-
I find the below Powershell scrpit (remove_SOFTWARE) do not apply to all the $Host where it has more than 100 records. **$Hosts = Get-FalconHost -Filter "platform_name:'Linux'" Invoke-FalconRtr -Command runscript -Arguments "-CloudFile='remove_SOFTWARE'" -HostIds $Hosts -Timeout 600 -QueueOffline $true** |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Your problem is the first line:
This will return 100 results by default. Add the
|
Beta Was this translation helpful? Give feedback.
Your problem is the first line:
This will return 100 results by default. Add the
-All
switch to return all results.Invoke-FalconRtr
does not have a hosts limit. It will generate sessions of 10,000 hosts and loop through them, no matter how many there are.