Skip to content
Discussion options

You must be logged in to vote

Sorry, I gave you the wrong command when I asked you to use Get-FalconHost -Id <id> -State to check for content state information. That's online state information. You can ignore that.

However, I can see the content details in your examples:

content_state : @{system_critical=; rapid_response_content=; vulnerability_management=; sensor_operations=}

What you're seeing is default PowerShell display behavior for complex objects. If you want to see the values under system_critical below content_state, you need to reference that specific property in the object. Here are some ways to do that:

$Obj = Get-FalconHost -Filter "device_id:'id'" -Include content_state -Detailed
$Obj | Select-Object -Ex…

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by bk-cs
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #524 on March 10, 2026 20:02.