-
Hi, PS C:\Users\redacted> Request-FalconToken -ClientId 'xxx' -ClientSecret 'xxx' -Cloud us-2
When I run Powershell as admin, I get a similar message, but it's more straightforward: Write-Result : [{"code":403,"message":"Failed to issue access token - Not Authorized"}]
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The error you received looks like it's due to the module not properly importing. It looks like your PowerShell module path is in OneDrive which could cause import problems. Did you If the import doesn't work, try a manual install. |
Beta Was this translation helpful? Give feedback.
The error you received looks like it's due to the module not properly importing. It looks like your PowerShell module path is in OneDrive which could cause import problems.
Did you
Import-Module -Name PSFalcon
before attempting the token request?If the import doesn't work, try a manual install.