Skip navigation

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

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\\] "\\machinename\root\ccm: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.

Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish