This section provides solutions to the errors you might encounter while working with Flexmonster CLI. If you cannot find your error here, post a question to our Help Forum.
Console error: ‘flexmonster : File C:\Users\User\AppData\Roaming\npm\flexmonster.ps1 cannot be loaded because running scripts is disabled on this system.’
This error means that your current Windows PowerShell execution policy does not allow scripts. To run the CLI commands, try another command prompt or set a new PowerShell execution policy with this command:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Learn more about execution policies in Microsoft documentation.