Où sont enregistrés les paramètres par défaut pour les valeurs par défaut de l'invite de commandes?

20

Où sont enregistrés les paramètres par défaut pour les valeurs par défaut d'invite de commandes? Sont-ils stockés quelque part dans le registre ou dans un fichier?

J'aimerais créer un .regfichier pour définir mes préférences par défaut lors de la première connexion à une machine.

Je parle des paramètres d'application par défaut: mode QuickEdit, taille du tampon, couleur du texte, etc.

Keltari
la source

Réponses:

21

Sous HKEY_CURRENT_USER\Consoleil y a quelques paramètres par défaut pour toutes les consoles et sous-clés avec des paramètres individuels pour les programmes de console. Vous voudrez peut - être jeter un oeil à ces paramètres, en particulier à QuickEdit, ScreenBufferSize, ScreenColors, etc.

Werner Henze
la source
1
Exactement ce que je cherchais.
Keltari
2
Comme cela à une autre question mentionne, si vous êtes sur Windows 10, les paramètres ne sont plus enregistrés dans le registre, mais seulement dans les fichiers .lnk. (Voir la réponse pour les détails.)
RobH
@RobH les valeurs par défaut sont toujours dans le registre, mais les propriétés sont dans le fichier lnk dans Windows 10.
WesternGun
6

Réponse mise à jour en réponse à une question modifiée

Je vous suggère de créer un raccourci pour CMD.EXE sur votre bureau et de modifier les propriétés pour obtenir les paramètres souhaités. Copiez ensuite le raccourci sur un périphérique portable comme une clé USB ou un dossier réseau. Vous devriez pouvoir lancer le raccourci depuis n'importe quel ordinateur et obtenir les paramètres souhaités.

Réponse originale traitant de paramètres entièrement différents

Je connais quatre paramètres qui peuvent être contrôlés par le registre:

  • Exécution automatique
  • Extensions
  • Expansion retardée
  • Achèvement du nom de fichier

Les paramètres du registre sont documentés dans l'aide intégrée, accessible à partir de la ligne de commande en tapant HELP CMDouCMD /?

Voici un extrait de l'aide pertinente:

If /D was NOT specified on the command line, then when CMD.EXE starts, it
looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if
either or both are present, they are executed first.

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun

Command Extensions are enabled by default.  You may also disable
extensions for a particular invocation by using the /E:OFF switch.  You
can enable or disable extensions for all invocations of CMD.EXE on a
machine and/or user logon session by setting either or both of the
following REG_DWORD values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensio

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtension

to either 0x1 or 0x0.  The user specific setting takes precedence over
the machine setting.  The command line switches take precedence over the
registry settings.

In a batch file, the SETLOCAL ENABLEEXTENSIONS or DISABLEEXTENSIONS argume
takes precedence over the /E:ON or /E:OFF switch. See SETLOCAL /? for deta

The command extensions involve changes and/or additions to the following
commands:

    DEL or ERASE
    COLOR
    CD or CHDIR
    MD or MKDIR
    PROMPT
    PUSHD
    POPD
    SET
    SETLOCAL
    ENDLOCAL
    IF
    FOR
    CALL
    SHIFT
    GOTO
    START (also includes changes to external command invocation)
    ASSOC
    FTYPE

To get specific details, type commandname /? to view the specifics.

Delayed environment variable expansion is NOT enabled by default.  You
can enable or disable delayed environment variable expansion for a
particular invocation of CMD.EXE with the /V:ON or /V:OFF switch.  You
can enable or disable delayed expansion for all invocations of CMD.EXE on
machine and/or user logon session by setting either or both of the
following REG_DWORD values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansi

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansio

to either 0x1 or 0x0.  The user specific setting takes precedence over
the machine setting.  The command line switches take precedence over the
registry settings.

In a batch file the SETLOCAL ENABLEDELAYEDEXPANSION or DISABLEDELAYEDEXPAN
arguments takes precedence over the /V:ON or /V:OFF switch. See SETLOCAL /
for details.

If delayed environment variable expansion is enabled, then the exclamation
character can be used to substitute the value of an environment variable
at execution time.

You can enable or disable file name completion for a particular
invocation of CMD.EXE with the /F:ON or /F:OFF switch.  You can enable
or disable completion for all invocations of CMD.EXE on a machine and/or
user logon session by setting either or both of the following REG_DWORD
values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar
    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\PathCompletion

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar
    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\PathCompletionC

with the hex value of a control character to use for a particular
function (e.g.  0x4 is Ctrl-D and 0x6 is Ctrl-F).  The user specific
settings take precedence over the machine settings.  The command line
switches take precedence over the registry settings.

If completion is enabled with the /F:ON switch, the two control
characters used are Ctrl-D for directory name completion and Ctrl-F for
file name completion.  To disable a particular completion character in
the registry, use the value for space (0x20) as it is not a valid
control character.

Completion is invoked when you type either of the two control
characters.  The completion function takes the path string to the left
of the cursor appends a wild card character to it if none is already
present and builds up a list of paths that match.  It then displays the
first matching path.  If no paths match, it just beeps and leaves the
display alone.  Thereafter, repeated pressing of the same control
character will cycle through the list of matching paths.  Pressing the
Shift key with the control character will move through the list
backwards.  If you edit the line in any way and press the control
character again, the saved list of matching paths is discarded and a new
one generated.  The same occurs if you switch between file and directory
name completion.  The only difference between the two control characters
is the file completion character matches both file and directory names,
while the directory completion character only matches directory names.
If file completion is used on any of the built in directory commands
(CD, MD or RD) then directory completion is assumed.

The completion code deals correctly with file names that contain spaces
or other special characters by placing quotes around the matching path.
Also, if you back up, then invoke completion from within a line, the
text to the right of the cursor at the point completion was invoked is
discarded.

The special characters that require quotes are:
     <space>
     &()[]{}^=;!'+,`~
dbenham
la source
3

Voici ce que j'ai fait pour Windows 10:

  1. Collez-le dans l'Explorateur Windows exactement comme écrit:

    %LOCALAPPDATA%\Microsoft\Windows\WinX\Group3\
    
  2. Faites un clic droit sur les deux raccourcis "Invite de commandes" et sélectionnez "propriétés"

  3. La modification de ces onglets modifiera les paramètres par défaut de l'invite de commande:

    • Police de caractère
    • Disposition
    • Couleurs
    • les options

N'oubliez pas que les paramètres doivent être modifiés pour les deux raccourcis. Je ne sais pas pourquoi il y en a deux.:/

Daniel Tonon
la source
Cette réponse ne semble pas fonctionner sur les versions antérieures de Windows, la question a été posée en 2013, donc une réponse qui ne fonctionne que pour Windows 10 n'est pas très utile à l'auteur. Comment puis-je savoir que cela ne s'applique qu'à Windows 10? L'emplacement de ces paramètres est clairement pour l'invite de commande d'amélioration qui existe sur Windows 10 en raison WinXdu chemin d'accès.
Ramhound
2
Ce n'est pas parce que la question a été posée en 2013 que le demandeur n'a pas mis à jour son système d'exploitation vers Windows 10 depuis. En outre, c'est une réponse très simple à la question qui aidera d'autres personnes qui ont Windows 10 à trouver les paramètres d'invite de commande par défaut. Je ne pense pas que ma réponse mérite le -1 que vous lui avez donné.
Daniel Tonon
1
Le vote est annulaire pour une raison, je ne pense pas que je devrais être attaqué personnellement, pour avoir émis un vote
Ramhound
La dernière chose dont le monde a besoin, c'est d'une autre personne essayant d'éviter de prendre la responsabilité de LEURS actions.
kreemoweet