w10install/scripts/modify-path.cmd
Michael H.G. Schmidt 2f8015aa6e .
2021-01-30 21:38:46 +01:00

25 lines
694 B
Batchfile

@echo off
echo ####### %0 #######
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" ^
/v PATH /t REG_EXPAND_SZ /f
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
echo ####### %0 #######