Lorsque j'ouvre mon invite de commande, il utilise par défaut mon lecteur H et, lorsque j'utilise cd/c: il ne change pas pour le lecteur C. S'il vous plaît besoin d'aide, j'ai essayé les commandes suivantes regsvr32/u msolap.dll Merci
cd /c:
, il ne passe pas au lecteur C.Notez que la commande ci-dessus est incorrecte, elle devrait être cd c:\
ou c:/
.
Si vous voulez changer le lecteur actuel en plus de changer de répertoire, utilisez l'option /d
:
cd /d c:\
Utilisez le commutateur/D pour changer de lecteur en plus de changer le répertoire en cours d’un lecteur.
Exemple:
F:\test>cd c:\
F:\test>rem drive doesn't change
F:\test>cd /d c:\
c:\>rem drive changes
cd
usagec:\>cd /?
Displays the name of or changes the current directory.
CHDIR [/D] [drive:][path]
CHDIR [..]
CD [/D] [drive:][path]
CD [..]
.. Specifies that you want to change to the parent directory.
Type CD drive: to display the current directory in the specified drive.
Type CD without parameters to display the current drive and directory.
Use the /D switch to change current drive in addition to changing current
directory for a drive.
If Command Extensions are enabled CHDIR changes as follows:
The current directory string is converted to use the same case as
the on disk names. So CD C:\TEMP would actually set the current
directory to C:\Temp if that is the case on disk.
CHDIR command does not treat spaces as delimiters, so it is possible to
CD into a subdirectory name that contains a space without surrounding
the name with quotes. For example:
cd \winnt\profiles\username\programs\start menu
is the same as:
cd "\winnt\profiles\username\programs\start menu"
which is what you would have to type if extensions were disabled.
Dans votre menu Démarrer, tapez cmd
, Invite de commandes apparaît dans la liste. Faites un clic droit dessus, sélectionnez Propriétés.
Entrez c:
dans le champ Démarrer dans au lieu de %homedrive%%homepath%
. Cliquez sur OK.
Terminé.