How to use the WSL and CMD terminal from VsCode terminal?

Viewed 24

I can only use the bash, tmux, and javascript debug terminal in VsCode. I can't use the CMD and WSL terminal.

I tried to change it in the default terminal profile but there's no CMD and WSL there.

No CMD and WSL in default terminal profile

No CMD and WSL Terminal in the options

1 Answers

Press on Configure Terminal Settings and open setting.json file and add this line

"terminal.integrated.defaultProfile.windows": "Command Prompt",

Go to VSCode to learn more about terminal integration.

Related