-
Hello, For some reason
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Device Details incase needed:
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the report and the detailed information! I don't think this is a case of the This part is the giveaway, because it's saying that PS /Users/***> Get-FalconScript -Detailed $true -Debug -Verbose
VERBOSE: [Get-Query] filter=True In other words, PowerShell is interpreting what you wrote as: PS /Users/***> Get-FalconScript -Filter True -Detailed -Debug -Verbose Which is failing because Here's the proper way to write the command: PS /Users/***> Get-FalconScript -Detailed |
Beta Was this translation helpful? Give feedback.
Thanks for the report and the detailed information!
I don't think this is a case of the
-Detailed
failing -- I think the problem is due to how you're using it. In your example, you're treating it like a[boolean]
(when it should be a[switch]
) and the command thinks you're supplying the value of$true
for-Filter
because of the position of the argument.This part is the giveaway, because it's saying that
Get-Query
is appendingfilter=True
to the URL path:In other words, PowerShell is interpreting what you wrote as:
Which i…