In trying to devise a detection clause for an .exe KB deployment, I came across
this page
(http://myitforum.com/myitforumwp/2013/06/18/deploying-microsoft-hotfixes-via-the-configmgr-2012-app-model-28/
) detailing a one line PowerShell command:
Get-HotFix | Where-Object {$_HotfixID -eq 'KB1234567'}
I'm certainly no PowerShell expert, but that sounds simple enough to me, just
change the KB number. Unfortunately the statistics on my deployment all show
failures, and no successes. Our default client settings require PowerShell
scripts to be signed. But does that apply to the detection clause too? Is
that possibly why I'm getting failures? Should I be doing this detection
clause with a different method?