This commit is contained in:
Mark Silvey 2020-06-25 11:14:14 -07:00
Родитель 6e91163dcf
Коммит a4323f3d04
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,15 @@
# Added by ermatt 2/21/2020 for remia
#Force Sensor evaluation action on clients
$strAction = "C4EAA67D-DD9A-0000-0000-000000000000"
try {
Invoke-WmiMethod -ComputerName $env:computername -Namespace root\ccm -Class SMS_Client -Name TriggerSchedule -ArgumentList $strAction -ErrorAction Stop | Out-Null
write-host "Sensor Triggered"
}
catch {
write-host "$env:computername`: $_" -ForegroundColor Red
}
# Expected return string: Sensor Triggered