-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You'll want to follow this example instead: https://github.com/CrowdStrike/psfalcon/wiki/Code-Examples#authorize-and-run-commands-in-member-cids The script you used it meant for multiple standalone Falcon instances, not ones in a Parent/Child (Flight Control) configuration. In Flight Control, you can make an API Client in the parent which has access to each of the child CIDs. The host information of the children is not visible within the parent itself--you have to authenticate with each child and pull it that way. The example script is designed to authenticate with the parent, then get a list of the associated children and authenticate with each of those directly in order to run whatever code you'd like. Note that exporting to CSV is not a perfect solution and may lead to data loss. If you want to ensure integrity of the device properties, exporting to Json is a better solution. |
Beta Was this translation helpful? Give feedback.
You'll want to follow this example instead: https://github.com/CrowdStrike/psfalcon/wiki/Code-Ex…