The Crowdstrike Falcon Platform is a cloud-based, AI-powered, next-generation endpoint protection platform. Through the use of their lightweight agent called the Crowdstrike Falcon Sensor, you can quickly secure your systems and begin to stop breaches in a matter of minutes but how do you get it installed?
In this video, you’ll learn how to deploy the Crowdstrike Falcon Sensor for Windows using PowerShell & Group Policy. You will see, step-by-step, what is needed for installation and deployment. You will then configure and link a Group Policy Object containing your deployment script configuration.
PowerShell script:
Update these variables as needed
$CID = 'your CID here'
$SensorShare = 'path to the sensor executable'
The sensor is copied to the following directory
$SensorLocal = 'C:\Temp\WindowsSensor.exe'
Create a TEMP directory if one does not already exist
if (!(Test-Path -Path 'C:\Temp' -ErrorAction SilentlyContinue)) {
New-Item -ItemType Directory -Path 'C:\Temp' -Force
}
Now copy the sensor installer if the share is available
if (Test-Path -Path $SensorShare) {
Copy-Item -Path $SensorShare -Destination $SensorLocal -Force
}
Now check to see if the service is already present and if so, don't bother running installer.
if (!(Get-Service -Name 'CSFalconService' -ErrorAction SilentlyContinue)) {
& $SensorLocal /install /quiet /norestart CID=$CID
}
☕️ Buy Me a Coffee to support the channel: https://ko-fi.com/qtechsl
SUBSCRIBE!
http://bit.ly/QTech-SL-Youtube
LET'S CONNECT!
/ qtechsl
#crowdstrike #falconsensor #windowsserver2022
Смотрите видео How to Deploy CrowdStrike Falcon Sensor via Group Policy | Windows Server 2022 онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь QTech-SL 01 Март 2024, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 5,388 раз и оно понравилось 51 людям.