Update deploying-crowdstrike-with-fleet.md

Adds additional instructions for deploying via .exe
This commit is contained in:
Gray Williams 2026-04-17 14:44:06 +01:00 committed by GitHub
parent 378fc322cb
commit f135c8266c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -137,6 +137,20 @@ Exit $installProcess.ExitCode
}
```
If you are using the .exe package, you will need to use the following post-install script:
```
$logFile = "${env:TEMP}\fleet-install-software.log"
try {
$installProcess = Start-Process -FilePath "${env:INSTALLER_PATH}" -ArgumentList "/quiet /norestart /install CID=<YOUR-CUSTOMER-ID-HERE>"
Get-Content $logFile -Tail 500
Exit $installProcess.ExitCode
} catch {
Write-Host "Error: $_"
Exit 1
}
```
>CrowdStrike provides [documentation for additional flags](https://github.com/crowdstrike/falcon-scripts/tree/main/powershell/install) here.
### 2. Add the Falcon Sensor to your software library