In Visual Studio Code, I would like to open a PowerShell window (outside of VSC) with the shortcut Ctrl+Shift+C.
By default, this shortcut will open a cmd.exe
, so I would like to replace it.
In Visual Studio Code, I would like to open a PowerShell window (outside of VSC) with the shortcut Ctrl+Shift+C.
By default, this shortcut will open a cmd.exe
, so I would like to replace it.
You can set the terminal.external.windowsExec
setting in settings.json. See this to find PowerShell's executable path if yours isn't the default one.
"terminal.external.windowsExec": "C:\\WINDOWS\\system32\\WindowsPowerShell\\1.0\\powershell.exe"