So I am trying to deploy CrowdStrike to our environment using SCCM. I'm fairly new to both PowerShell and SCCM and haven't come across much help for what I am needing. The installer is an .exe and the vendor does not recommend repackaging it as a .msi. This is all they have for me to go on and their support wasn't very helpful:
Automatic installation
To automate silent installations on many devices, including installations using a deployment tool such as Windows System Center Configuration Manager (SCCM), complete these steps.- Use the Google Chrome browser to download the sensor installer from Hosts > Sensor Downloads.
- Copy your customer ID checksum (CCID) from Hosts > Sensor Downloads.
- Run or configure your deployment tool to use this command, replacing <installer_filename> with the name of the install file you downloaded, and <CCID> with the CCID from step 2 :
<installer_filename> /install /quiet /norestart CID=<CCID>
So what I have done is gone to the Software Library in SCCM. Down to Scripts and created a new one. I have \\NetworkSharePath\WindowsSensor.exe /install /quiet /no restart CID=CIDnumber. After saving I go to approve the script and then go to and a device, right click on it and run script. It looks like it is successful but nothing happens. If I run that command locally on a PC it installs just fine. What am I missing?