In my Previous blog,I posted script On How to Refresh/Redistribute One package on List of Distribution Points http://eskonr.com/2013/09/sccm-configmgr-powershell-script-refresh-package-on-multiple-distribution-points/ This post talks about how to Refresh / Redistribute list of packages to Single distribution Point. import-module F:\sccm\AdminConsole\bin\ConfigurationManager.psd1 #Change the site Code $SiteCode = "P01" #provide the path list of packages to be Refreshed $packages =GC "C:\scripts\pkglist.txt"…

Powershell Scripting made things lot more easier in Configuration Manager 2012.You can automate console operations by using Windows PowerShell cmdlets.For list of Configmgr SP1 cmdlets,refer http://technet.microsoft.com/en-us/library/jj821831(v=sc.10).aspx Manually Refresh of the Distribution Points for a specific package in Configmgr 2012 is not easy as it was in CM07. Started using the Powershell script for simple tasks…
Script to Download all MMS 2013 SCCM Configmgr 2012 Sessions

Do you remember the Powershell script posted by SCOMFAQ  to download required MMS 2012 Sessions last year Once again he come up with easy way to download all the required MMS 2013 sessions using Powershell script. This basically contains 2 power shell scripts : Create-MMS2013SessionFile.ps1 –> This file creates the sessions.txt file OR You can…