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.

관련 정보