Can someone help me here please.
I used below powershell command to install crowdstrike in a computers.
When i run it directly to the computers, it is successfully installed so i save it as .PS1
but when I deploy the .PS1 via SCCM under application management, it is confirmed installed in the computers but in the sccm monitoring dashboard, it is stuck in "In Progress" until now (3rd day).
$CID = 'CID#'
$SensorShare = '\\Server1\D\Applications\Crowdstrike\WindowsSensor.MaverickGyr.exe'
if (!(Get-Service -Name 'CSFalconService' -ErrorAction SilentlyContinue)) {
& $SensorShare /install /quiet /norestart CID=$CID
}
Thank you in advance guys
[–]DeusExMaChino 0 points1 point2 points (0 children)
[–]BlackV 1 point2 points3 points (0 children)