Created
February 13, 2013 07:26
-
-
Save ebibibi/4942874 to your computer and use it in GitHub Desktop.
Kick all sccm client actions by PowerShell.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$a = New-Object -comobject cpapplet.cpappletmgr | |
$a.GetClientActions() |% {$_.PerformAction()} | |
$b = New-Object –COMObject CPApplet.cpappletmgr | |
$b.GetClientActions() |% {$_.PerformAction()} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment