web-dev-qa-db-ja.com

Visual Studio Code、powershell.exeからcmd.exeに切り替える方法

ターミナルでpowershell.exeからcmd.exeに切り替えたいのですが、どうすればいいのかわかりません。明確化のためにスクリーンショットを提供しました。

screenshot 1screenshot 2

35
user6252698
  1. Ctrl + Shift + Pを押して、すべてのコマンドを表示します。
  2. 表示されたテキストボックスにShellと入力して、リストをフィルタリングします。
  3. Terminal: Select Default Shellを選択します。
  4. Select your preferred terminal Shell, you can change this later in your settings or follow the same process as we do nowのプロンプトが表示されます
  5. Command Prompt(cmd.exe)を選択します
  6. [シェル]ペインの[削除]アイコンをクリックして、既存のターミナルを削除します。
  7. Ctrl + `(またはメニューの[表示]> [ターミナル])を押して、新しいターミナルペインを開きます。
90

このユーザー設定をファイルに追加-環境設定-ユーザー設定

// Place your settings in this file to overwrite the default settings
{
    "terminal.integrated.Shell.windows": "C:\\Windows\\System32\\cmd.exe",

}
6
Aravind

また、端末をクリックしたときにこの問題に直面しました。コマンドプロンプトではなくPowershellが表示されていたため、Visual Studioでコマンドプロンプトを取得するために次の手順を実行しました。

  1. 表示->コマンドパレット->統合ターミナルの切り替え
  2. ショートカットでターミナルを開く ctrl+` または表示->ターミナル
  3. コマンドをcmd.exeとして記述し、実行します
2
Puja Sharma

設定を開く(ctrl + comma)

find terminal.integrated.Shell.windows

値をC:\\Windows\\System32\\cmd.exeに置き換えます

1
muthu kumar