Como posso alterar permanentemente o prompt de comando no Windows 7?

Como posso alterar permanentemente o prompt de comando no Windows 7?

Gostaria de alterar o prompt para $p$g$_$fpermanentemente, mas ele se reinicia toda vez que reabro a janela de comando.

Como posso fazer com que permaneça o mesmo para sempre?

Responder1

Crie uma nova variável de ambiente chamada PROMPT. Defina o valor da variável para o prompt desejado.

insira a descrição da imagem aqui

insira a descrição da imagem aqui

Responder2

No prompt de comando digite:

setx Prompt $p$g$_$f

Em seguida, reabra o prompt de comando.

Para quem não sabe como obter ajuda para comandos DOS/CMD, digite:

setx /?

Obter:

SetX has three ways of working:

Syntax 1:
    SETX [/S system [/U [domain\]user [/P [password]]]] var value [/M]

Syntax 2:
    SETX [/S system [/U [domain\]user [/P [password]]]] var /K regpath [/M]

Syntax 3:
    SETX [/S system [/U [domain\]user [/P [password]]]]
         /F file {var {/A x,y | /R x,y string}[/M] | /X} [/D delimiters]

Description:
    Creates or modifies environment variables in the user or system
    environment. Can set variables based on arguments, regkeys or
    file input.

Parameter List:
    /S     system          Specifies the remote system to connect to.

    /U     [domain\]user   Specifies the user context under which
                           the command should execute.

    /P     [password]      Specifies the password for the given
                           user context. Prompts for input if omitted.

    var                    Specifies the environment variable to set.

    value                  Specifies a value to be assigned to the
                           environment variable.

    /K     regpath         Specifies that the variable is set based
                           on information from a registry key.
                           Path should be specified in the format of
                           hive\key\...\value. For example,
                           HKEY_LOCAL_MACHINE\System\CurrentControlSet\
                           Control\TimeZoneInformation\StandardName.

    /F     file            Specifies the filename of the text file
                           to use.

    /A     x,y             Specifies absolute file coordinates
                           (line X, item Y) as parameters to search
                           within the file.

    /R     x,y string      Specifies relative file coordinates with
                           respect to "string" as the search parameters.

    /M                     Specifies that the variable should be set in
                           the system wide (HKEY_LOCAL_MACHINE)
                           environment. The default is to set the
                           variable under the HKEY_CURRENT_USER
                           environment.

    /X                     Displays file contents with x,y coordinates.

    /D     delimiters      Specifies additional delimiters such as ","
                           or "\". The built-in delimiters are space,
                           tab, carriage return, and linefeed. Any
                           ASCII character can be used as an additional
                           delimiter. The maximum number of delimiters,
                           including the built-in delimiters, is 15.

    /?                     Displays this help message.

NOTE: 1) SETX writes variables to the master environment in the registry.

      2) On a local system, variables created or modified by this tool
         will be available in future command windows but not in the
         current CMD.exe command window.

      3) On a remote system, variables created or modified by this tool
         will be available at the next logon session.

      4) The valid Registry Key data types are REG_DWORD, REG_EXPAND_SZ,
         REG_SZ, REG_MULTI_SZ.

      5) Supported hives:  HKEY_LOCAL_MACHINE (HKLM),
         HKEY_CURRENT_USER (HKCU).

      6) Delimiters are case sensitive.

      7) REG_DWORD values are extracted from the registry in decimal
         format.

Examples:
    SETX MACHINE COMPAQ
    SETX MACHINE "COMPAQ COMPUTER" /M
    SETX MYPATH "%PATH%"
    SETX MYPATH ~PATH~
    SETX /S system /U user /P password  MACHINE COMPAQ
    SETX /S system /U user /P password MYPATH ^%PATH^%
    SETX TZONE /K HKEY_LOCAL_MACHINE\System\CurrentControlSet\
         Control\TimeZoneInformation\StandardName
    SETX BUILD /K "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows
         NT\CurrentVersion\CurrentBuildNumber" /M
    SETX /S system /U user /P password TZONE /K HKEY_LOCAL_MACHINE\
         System\CurrentControlSet\Control\TimeZoneInformation\
         StandardName
    SETX /S system /U user /P password  BUILD /K
         "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\
         CurrentVersion\CurrentBuildNumber" /M
    SETX /F ipconfig.out /X
    SETX IPADDR /F ipconfig.out /A 5,11
    SETX OCTET1 /F ipconfig.out /A 5,3 /D "#$*."
    SETX IPGATEWAY /F ipconfig.out /R 0,7 Gateway
    SETX /S system /U user /P password  /F c:\ipconfig.out /X

Responder3

Para alterar a aparência do seu prompt do DOS (ou "Prompt de comando"), clique com o botão direito em "Computador" (geralmente na área de trabalho do Windows ou no menu Iniciar do Windows) e siga estas etapas:

  1. Clique no rótulo "Configurações avançadas do sistema"
  2. Clique no botão "Variáveis ​​de Ambiente..."
  3. Clique no botão "Novo..." (uma "Variável de usuário" afeta apenas você e "Variáveis ​​de sistema" afeta todos os usuários)
  4. Crie uma variável chamada "PROMPT" e insira o texto de prompt desejado (como incluí para você na imagem final abaixo)
  5. Clique no botão "OK" para fechar a janela "Variáveis ​​de Ambiente"
  6. Clique no botão "OK" para fechar a janela "Propriedades do Sistema"

Essa mudança também sobreviverá às reinicializações.

insira a descrição da imagem aqui

insira a descrição da imagem aqui

insira a descrição da imagem aqui

Responder4

O Windows vem com o Windows PowerShell, que permite o pipeline entre outros recursos antigos exclusivos do Linux.

Você pode iniciá-lo clicando no botão Iniciar e entrando no PowerShell, que oferece três opções. Clique em PowerShell. Clique com o botão direito na barra de título da janela e selecione Propriedades. Na janela de abertura você define as configurações de visualização e comportamento.

Caso contrário, em primeiro lugar, em vez de abrir o PowerShell, selecione e clique em módulos do PowerShell.

Consulte a documentação da Microsoft para saber o que você pode fazer:

PS: Eu não recomendaria o shell clássico se você desenvolve aplicativos de console.

informação relacionada