w10install/scripts/modify-path.cmd
Michael H.G. Schmidt 98a0f86d7e .
2021-02-28 14:10:59 +01:00

25 lines
629 B
Batchfile

@echo off
set newPATH=%SYSTEMROOT%;%SYSTEMROOT%\system32;^
%SYSTEMROOT%\system32\wbem;^
%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;^
%LOCALAPPDATA%\Microsoft\WindowsApps;^
%TOOLS%;^
%TOOLS%\git\bin;^
%TOOLS%\git\usr\bin;^
%ProgramFiles%\PureBasic\Compilers;^
%ProgramFiles%\Go\bin;^
%SystemDrive%\Python27;^
%ProgramFiles%\FarManager
echo ####### %0 #######
echo setting GLOBAL PATH variable ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v PATH /t REG_EXPAND_SZ /d "%newPATH%" /f
setx PATH "%newPATH%"
set PATH=%newPATH%
echo ####### %0 #######