Windows 7 の %PROMPT% のデフォルト値は何ですか?

Windows 7 の %PROMPT% のデフォルト値は何ですか?

の値を変更した%PROMPT%ところ、いくつかのこと動作しません。デフォルト値は何ですか?

答え1

デフォルト値は です$P$G

special codes次のコマンドで表示できますprompt /?:

>prompt /?
Changes the cmd.exe command prompt.

PROMPT [text]

  text    Specifies a new command prompt.

Prompt can be made up of normal characters and the following special codes:

  $A   & (Ampersand)
  $B   | (pipe)
  $C   ( (Left parenthesis)
  $D   Current date
  $E   Escape code (ASCII code 27)
  $F   ) (Right parenthesis)
  $G   > (greater-than sign)
  $H   Backspace (erases previous character)
  $L   < (less-than sign)
  $N   Current drive
  $P   Current drive and path
  $Q   = (equal sign)
  $S     (space)
  $T   Current time
  $V   Windows version number
  $_   Carriage return and linefeed
  $$   $ (dollar sign)

If Command Extensions are enabled the PROMPT command supports
the following additional formatting characters:

  $+   zero or more plus sign (+) characters depending upon the
       depth of the PUSHD directory stack, one character for each
       level pushed.

  $M   Displays the remote name associated with the current drive
       letter or the empty string if current drive is not a network
       drive.

環境prompt変数は、あなたが言及したダイアログ ボックスには表示されませんでした。 を通じて値を見つけましたecho %prompt%。 環境変数エントリが表示されている場合は、削除する必要があります。これでデフォルトに戻すのに十分です。 いずれにしても、デフォルトではユーザー変数には含まれていないはずです。

私のユーザー変数は と のみTEMPを定義しますTMP

関連情報