w10install/scripts/modify-path.cmd

25 lines
694 B
Batchfile
Raw Normal View History

2021-01-12 20:57:33 +01:00
@echo off
echo ####### %0 #######
2021-01-30 21:38:46 +01:00
echo setting GLOBAL PATH variable ...
rem first the standard pathes (via registry) ...
reg add ^
"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /d ^
/d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem" ^
2021-01-12 20:57:33 +01:00
/v PATH /t REG_EXPAND_SZ /f
2021-01-30 21:38:46 +01:00
rem now add powershell and local apps ...
setx PATH "%PATH%;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0" /M
setx PATH "%PATH%;%LOCALAPPDATA%\Microsoft\WindowsApps" /M
rem TOOLS path ...
setx PATH "%PATH%;%TOOLS%" /M
rem other stuff (that will not be set in other scripts) ...
setx PATH "%PATH%;%TOOLS%\notepad++" /M
2021-01-12 20:57:33 +01:00
echo ####### %0 #######