A PowerShell wrapper around Crowdstrike API.
This is a PowerShell Module that functions as an API wrapper around Crowdstrike's API, which is based on OAuth2.
Please open a Pull Request if you desire any new features or create an Issue if you come across a bug.
Install-Module -Name PSCrowdstrike -Scope CurrentUser -Repository PSGallery
## This retrieves a token using ClientID 12345 and ClientSecret 54321
Get-CSToken -ClientID "12345" -ClientSecret "54321"
## Retrieves host information (OS, OU, Domain, etc) for DC1.
Get-CSDeviceDetails -Hostname "DC1"
## Retrieves AgentID's for Active Directory domain 'domain.local'.
Get-CSDomainMachines -Domain "domain.local"