Answers for "vscode runnign scripts is disabled on this system"

0

vscode running scripts is disabled on this system

add following in vscode > settings.json

"terminal.integrated.profiles.windows": {
  "PowerShell": {
    "source": "PowerShell",
      "icon": "terminal-powershell",
        "args": ["-ExecutionPolicy", "Bypass"]
  }
},
"terminal.integrated.defaultProfile.windows": "PowerShell"
Posted by: Guest on December-15-2021
0

running scripts is disabled on this system vscode

"terminal.integrated.shellArgs.windows": ["-ExecutionPolicy", "Bypass"]
Posted by: Guest on December-30-2020

Code answers related to "vscode runnign scripts is disabled on this system"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language