Skip to main content

Posts

Showing posts with the label SCCMClient

PowerShell + SCCM 2012 R2 : Client Push Installation

In this post, would share PowerShell way of enabling Client Push Installation on a Site . Divided into 3 Steps: Enable Client Push Installation Create Boundary Group, Add Boundary and set Content Location Distribute the Config Mgr Client Package Enable Client Push Installation After loading the ConfigurationManager PowerShell module, if we search for the commands with noun clientpush we get following output: PS DEX:\> gcm -Noun *clientpush* -Module configurationmanager CommandType Name ModuleName ----------- ---- ---------- Cmdlet Get-CMClientPushInstallation configurationmanager Cmdlet Set-CMClientPushInstallation configurationmanager Now one can go and read up help for these, I personally prefer the Online version of the help as it shows the Parameter sets and is always up to date too. How to do that ...