Когда я открываю командную строку, по умолчанию используется мой диск H, а когда я использую cd /c: он не меняется на диск C. Пожалуйста, нужна помощь, я попробовал следующие команды regsvr32 /u msolap.dll Спасибо
2 ответа
7
Когда я использую cd /c:
его не меняется на диск C.
Обратите внимание, что приведенная выше команда неверна, она должна быть cd c:\
или c:/
.
Если вы хотите изменить текущий диск в дополнение к изменению каталога, используйте параметр /d
:
cd /d c:\
Используйте переключатель /D для изменения текущего диска в дополнение к изменению текущего каталога для диска.
Пример:
F:\test>cd c:\
F:\test>rem drive doesn't change
F:\test>cd /d c:\
c:\>rem drive changes
использование cd
c:\>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.
Дальнейшее чтение
- Индекс AZ командной строки Windows CMD - Отличный справочник по всем вопросам, связанным с командной строкой Windows.
- CD - Изменить каталог - Выбрать папку (и диск)
3
В меню «Пуск» введите CMD, затем в списке отобразится командная строка, щелкните ее правой кнопкой мыши, выберите «Свойства», измените
В поле "Начать с": вместо% homedrive %% homepath% просто введите c: в поле "Начать с" нажмите "ОК",
Готово.