-
Copied from a post made by u/w33ha_AD on reddit: Hey Guys, I have been playing around PSFalcon for a couple of days now, and it is hands down one of the best underrated feature of CS, hopefully CS Sales teams start adding them and using them aggressively in their Sales Pitches. So I have been testing out - Run a command against a group of devices script from your repository and have a couple of questions Basic Scripts · CrowdStrike/psfalcon Wiki · GitHub Does RTR initiate parallel threads for execution of RTR or does it happen sequentially?. Also noticed it generates output in CSV format in batches of 500 - Is that the case ? $QueueOffline - How is that variable being used since its not a Positional Argument as per the script |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thank you! For the record, it's not an official feature of CrowdStrike, it's entirely my own project that I thought CrowdStrike users that are fans of PowerShell might appreciate. :)
Invoke-FalconRtr -GroupId <string> -Command <string> ... |
Beta Was this translation helpful? Give feedback.
Thank you! For the record, it's not an official feature of CrowdStrike, it's entirely my own project that I thought CrowdStrike users that are fans of PowerShell might appreciate. :)
Real-time Response passes commands to a single PowerShell thread and waits for it to complete. Real-time Response sessions eventually expire, so if the process takes a long time, I typically use a separate process.
There is no technical limitation to the number of hosts that can be added to a Real-time Response session. I made a design choice to limit the number of hosts with the use of
Invoke-FalconRtr
to 500 hosts per session to reduce potential for unexpected issues. Note thatInvoke-FalconRtr
was desi…