Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save caisback/aff49b76efdcd9102e5bfea6e9d31a34 to your computer and use it in GitHub Desktop.
Save caisback/aff49b76efdcd9102e5bfea6e9d31a34 to your computer and use it in GitHub Desktop.
Angular on VSCode - ng : File C:\Program Files\nodejs\ng.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.

Problem:

With in VSCode terminal when running > ng version

ng : File C:\Program Files\nodejs\ng.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.

Resolution:

PS C:\> set-ExecutionPolicy RemoteSigned -Scope CurrentUser
PS C:\> Get-ExecutionPolicy
PS C:\> Get-ExecutionPolicy -list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment