Q. How can I push an advertisement to a System Center Configuration Manager (SCCM) client in real time?

John Savill

August 27, 2010

1 Min Read
ITPro Today logo in a gray background | ITPro Today

A. SCCM uses a polling schedule to check if there are any advertisements for collections the client is a member of. This schedule can be defined by the administrator, but traditionally there was no way to push a package in real time to a client on-demand.

Clients discover the advertisements through a refresh of their machine policy, so one method to make a client deploy an update live is to remotely tell the clients to refresh their machine policies. You can do this several ways, such as through PowerShell:

$SMSCli = \[wmiclass\] "\machinenamerootccm:SMS_Client"


$

SMSCli.TriggerSchedule("\{00000000-0000-0000-0000-000000000021\}")

There are also third party tools that add this remote policy refresh launch to the SCCM management console. You can find this tool on its site.

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like