- Windows CMD: Переменная PATH — Добавить PATH — Echo PATH
- Вывод Переменной Windows PATH
- Добавить Путь к Windows PATH
- Задать Windows PATH для Текущей Сессии
- Задать Windows PATH на Постоянной Основе
- How to set PATH environment variable in batch file only once on Windows?
- 2 Answers 2
- Как изменить системную переменную path в Windows 7
- Для чего нужна системная переменная path
- Изменяем системную переменную path в Windows 7
- How to set PATH environment variable in batch file only once on Windows?
- 2 Answers 2
- how to change directory in bat
- 2 Answers 2
Windows CMD: Переменная PATH — Добавить PATH — Echo PATH
PATH — переменная окружения, в которой перечисляется набор директорий, разделенных точкой с запятой ( ; ), в которых расположены исполняемые программы.
В этой заметке я показываю, как вывести содержимое переменной окружения PATH с помощью командной строки в Windows.
Я также показываю, как добавить путь к переменной PATH на постоянной основе или только для текущей сессии.
Дельный Совет: Отображение списка переменных в Windows! Read More →
Вывод Переменной Windows PATH
Вывести содержимое переменной PATH из Windows cmd :
Приведенные выше команды возвращают все пути, которые хранятся в переменной окружения Windows PATH одной строкой, разделенной точкой с запятой ( ; ), что не очень удобочитаемо.
Чтобы вывести каждую запись переменной Windows PATH с новой строки, выполните следующее:
Дельный Совет: Создание переменных окружения в Windows! Читать далее →
Добавить Путь к Windows PATH
Внимание! Это решение может быть деструктивным, так как Windows обрезает PATH до 1024 символов. Перед любыми изменениями обязательно сделайте резервную копию PATH .
Сохраните содержимое переменной окружения Windows PATH в файл C:\path-backup.txt :
Задать Windows PATH для Текущей Сессии
Задать переменную Windows PATH для текущей сессии:
Задать Windows PATH на Постоянной Основе
Запуск от Имени Администратора: Команда setx доступна только начиная с Windows 7 и требует командной строки с повышенными правами.
Добавить каталог к пользовательской переменной PATH на постоянной основе:
Добавить каталог к системной переменной PATH на постоянной основе (для всех пользователей):
Info: Чтобы увидеть изменения после выполнения команда setx — откройте новую командную строку.
How to set PATH environment variable in batch file only once on Windows?
I have batch file that sets user path and is run as part of Visual Studio IDE build step.
When I build the project, close VS, and reopen it, and rebuild, I see appended path as part of PATH variable. However, I see that in Windows setting of environment variable PATH variable is created under user environment variables as
Question 1:
Why does this path also appear as appended path as part of system environment variable?
On executing echo %PATH% through Visual Studio console (when I run the project second times) prints system variable path and the new path I created appended to it.
Question 2:
I want to modify my batch file so that it only sets once PATH environment variable in user settings during first run of Visual Studio build. If the user variable PATH already exists on subsequent runs, it should not execute set command again to avoid appending new path again and again in system variable.
Any ideas how to achieve this?
2 Answers 2
edit: After some testing, it appears that my original answer isn’t entirely applicable to OP’s questions. To answer OP more directly:
%PATH% combines the values in HKLM\System\CurrentControlSet\Control\Session Manager\Environment\Path with HKCU\Environment\Path . When you setx «dir;dir» , what you’re setting is the HKEY_CURRENT_USER Path value. The machine-wide HKEY_LOCAL_MACHINE Path value remains untouched. That’s why you see your values as appended, rather than as replacements. You’d have to use setx /m to replace the HKLM Path value. But please don’t unless you want to create severe problems with your operating system installation.
If you want to test whether a directory exists in %PATH% , you could cd or pushd both to the directory you want to check and to each directory within %PATH% to unify each, making sure all relative paths, environment variables, etc. are flattened. set «var=%CD%» for each. Then if /I «!dir1!»==»!dir2!» the directory already exists somewhere in %PATH% . There’s an example of this in my original answer below.
The reason my original answer isn’t entirely applicable is because setx itself isn’t as destructive as I once thought. The danger is that often times when users want to append a directory to their path, they’ll setx /m PATH «%PATH%;new dir» ; and that is destructive. Because %PATH% is expanded before setx writes the value, all the directories in PATH are expanded prematurely.
The following method would be safer:
But that wasn’t really what OP asked, and I apologize for the knee-jerk answer.
original answer: setx is destructive and shouldn’t be used this way. When you setx PATH you’re converting the registry value data type from REG_EXPAND_SZ to REG_SZ. As soon as you do this, all the dynamic environment variables stored in your %PATH% get converted to flat, absolute paths. Use the path command to append directories to your %PATH% temporarily, and reg add to do so permanently. (As a side note, there’s also dpath , which temporarily adds a directory to your path, but can only be used by the type command. Scroll 2/3 the way down this page for more info on dpath .)
Как изменить системную переменную path в Windows 7
Те, кто хоть раз пользовался утилитами командной строки, знают, что намного удобней набирать команду сразу, не используя при этом путь к этой утилите, и даже не переходя в нужный каталог, поэтому сегодня поговорим о системной переменной path в Windows, узнаем, для чего она нужна, и как ее можно изменить.
Сегодня мы не будем разговаривать о том, что такое командная строка и какие стандартные утилиты командной строки есть в Windows, так как об этом мы уже разговаривали в материале Основы командной строки Windows.
Для чего нужна системная переменная path
Системная переменная path нужна нам для того, чтобы мы могли добавлять свои утилиты в командную строку CMD.exe, а если говорить конкретней, то добавлять каталоги, т.е. пути к этим каталогам для того, что ОС могла определить по названию утилиты, где она расположена, и запустить ее.
Если говорить на примере, то допустим, Вы открываете командную строку, набираете команду ipconfig (служит для конфигурирования сетевых интерфейсов) и в момент запуска командная строка не знает, где располагается данная утилита, поэтому она начинает ее искать. Сначала в текущем каталоге, затем в системных каталогах, которые как раз, и указаны в системной переменной path. Другими словами, если Вы написали свою консольную программу и хотите ее запустить так же, как ipconfig, то у Вас это не получиться, так как ОС не знает, где же лежит сама программа. Поэтому нам нужно переходить в каталог с программой или писать полный путь к исполняемому файлу, для того чтобы запустить свою утилиту. Поэтому, если Вы часто пользуетесь какой-нибудь консольной программой, которой нет, в стандартной сборке Windows и не хотите копировать ее в системные каталоги, то лучше всего будет создать свой каталог и добавить его в системную переменную path.
Пример
Допустим, мы написали консольную программу, для примера у нас это будет простой bat файл со следующей простой командой:
Примечание! Если Вы хотите, чтобы в командной строке выводилась кириллица, то сохраните бат файл с кодировкой OEM 866, это можно сделать с помощью текстового редактора Notepad++.
Сохраним с названием privet.bat на диске C в каталоге test.
Теперь мы запускаем командную строку (ОС Windows 7) «Пуск -> Выполнить -> cmd».
И сразу попробуем запустить нашу утилиту, и посмотрим, что у нас из этого выйдет:
Как видите, командная строка не знает что это за программа. Мы, конечно, можем написать по-другому, например:
Т.е. с указанием полного пути к утилите, то тогда она конечно запустится. Или также можно перейти в каталог test и уже от туда запустить утилиту, например:
В данном случае программа тоже запустится. Но согласитесь, что это все лишние движения, тем более, если мы собираемся использовать эту программу достаточно часто. Поэтому давайте изменим системную переменную path.
Примечание! Если Вам не нравится фон или цвет шрифта командной строки, то Вы легко можете изменить его, а как мы с Вами разговаривали в статье Настройка внешнего вида командной строки Windows.
Изменяем системную переменную path в Windows 7
Для этого открываем «Панель управления -> Система -> Дополнительные параметры системы».
Затем выбираем «Переменные среды».
После у Вас откроется окно «Переменные среды» и Вы в нижней части окна в списке «Системных переменных» ищите переменную path и жмете «Изменить».
В итоге у Вас откроется небольшое окошко «Изменение системной переменной», где Вы в поле «Значение переменной» дописываете в конце через точку запятой, путь к каталогу, в котором Вы будете хранить свои консольные утилиты. Например, я указал C:\test. После ввода жмем «ОК».
А теперь давайте проверим. Будем делать в точности, как и в первый раз, т.е. открываем командную строку и сразу пишем privet.bat и смотрим
Как видите, на этот раз у нас все заработало, даже без указания полного пути.
Еще раз скажу, что это будет полезно тем, кто достаточно часто пользуется консольными утилитами, кстати, многие комплексы приложений, которые Вы устанавливаете сами, добавляют в path нужный путь, делая это за Вас.
Я думаю достаточно, если есть вопросы, задавайте в комментариях. Удачи!
How to set PATH environment variable in batch file only once on Windows?
I have batch file that sets user path and is run as part of Visual Studio IDE build step.
When I build the project, close VS, and reopen it, and rebuild, I see appended path as part of PATH variable. However, I see that in Windows setting of environment variable PATH variable is created under user environment variables as
Question 1:
Why does this path also appear as appended path as part of system environment variable?
On executing echo %PATH% through Visual Studio console (when I run the project second times) prints system variable path and the new path I created appended to it.
Question 2:
I want to modify my batch file so that it only sets once PATH environment variable in user settings during first run of Visual Studio build. If the user variable PATH already exists on subsequent runs, it should not execute set command again to avoid appending new path again and again in system variable.
Any ideas how to achieve this?
2 Answers 2
edit: After some testing, it appears that my original answer isn’t entirely applicable to OP’s questions. To answer OP more directly:
%PATH% combines the values in HKLM\System\CurrentControlSet\Control\Session Manager\Environment\Path with HKCU\Environment\Path . When you setx «dir;dir» , what you’re setting is the HKEY_CURRENT_USER Path value. The machine-wide HKEY_LOCAL_MACHINE Path value remains untouched. That’s why you see your values as appended, rather than as replacements. You’d have to use setx /m to replace the HKLM Path value. But please don’t unless you want to create severe problems with your operating system installation.
If you want to test whether a directory exists in %PATH% , you could cd or pushd both to the directory you want to check and to each directory within %PATH% to unify each, making sure all relative paths, environment variables, etc. are flattened. set «var=%CD%» for each. Then if /I «!dir1!»==»!dir2!» the directory already exists somewhere in %PATH% . There’s an example of this in my original answer below.
The reason my original answer isn’t entirely applicable is because setx itself isn’t as destructive as I once thought. The danger is that often times when users want to append a directory to their path, they’ll setx /m PATH «%PATH%;new dir» ; and that is destructive. Because %PATH% is expanded before setx writes the value, all the directories in PATH are expanded prematurely.
The following method would be safer:
But that wasn’t really what OP asked, and I apologize for the knee-jerk answer.
original answer: setx is destructive and shouldn’t be used this way. When you setx PATH you’re converting the registry value data type from REG_EXPAND_SZ to REG_SZ. As soon as you do this, all the dynamic environment variables stored in your %PATH% get converted to flat, absolute paths. Use the path command to append directories to your %PATH% temporarily, and reg add to do so permanently. (As a side note, there’s also dpath , which temporarily adds a directory to your path, but can only be used by the type command. Scroll 2/3 the way down this page for more info on dpath .)
how to change directory in bat
I am programming in a Chinese character environment. I ran into two problems. First, I can’t change directory using bat. In bat file I cd D:, but this line does not actually change the directory. The next line working directory goes back to C:.
And, it seems that the cmd is not recognizing Chinese characters. I tried chcp 65001 but it does not work. How to make the cmd able to recognize Chinese characters?
I did a lot of googling but did not quite get an answer. Thanks in advance.
2 Answers 2
Use the /D switch to change current drive in addition to changing current directory for a drive:
Another approach: PUSHD Change the current directory/folder and store the previous folder/path for use by the POPD command:
Some commands in CMD Shell (which runs inside the Windows Console cmd ) recognise Chinese characters quite well even in non-Chinese environment, see below example. For instance, my Windows settings are
- display language is English (United Kingdom), and
- current system locale (Language for non-Unicode programs) is Czech i.e. Slavic (Central European) code pages CP852 / ANSI1250 .
Please note that I have no special CJK support set up! Unfortunately, there is still very limited support for unicode in the CMD shell.