w10install/scripts/modify-path.cmd

34 lines
842 B
Batchfile
Raw Permalink Normal View History

2021-01-12 20:57:33 +01:00
@echo off
2023-02-20 09:24:42 +01:00
set TOOLS=%SystemDrive%\tools
2021-01-12 20:57:33 +01:00
2021-02-28 14:10:59 +01:00
set newPATH=%SYSTEMROOT%;%SYSTEMROOT%\system32;^
%SYSTEMROOT%\system32\wbem;^
%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;^
%LOCALAPPDATA%\Microsoft\WindowsApps;^
%TOOLS%;^
2021-08-29 20:01:00 +02:00
%TOOLS%\android;^
2022-06-19 23:00:02 +02:00
%TOOLS%\sysinternals;^
2021-02-28 14:10:59 +01:00
%TOOLS%\git\bin;^
2021-04-11 22:54:17 +02:00
%TOOLS%\git\cmd;^
2021-02-28 14:10:59 +01:00
%TOOLS%\git\usr\bin;^
2021-04-11 22:54:17 +02:00
%TOOLS%\git\mingw64\bin;^
2021-02-28 14:10:59 +01:00
%ProgramFiles%\Go\bin;^
%SystemDrive%\Python27;^
2021-03-04 16:35:26 +01:00
%ProgramFiles%\Python39;^
2021-04-11 22:54:17 +02:00
%ProgramFiles%\Java\bin;^
%ProgramFiles%\PureBasic\Compilers;^
2023-01-01 13:27:28 +01:00
%ProgramFiles%\Microsoft VS Code\bin;^
%TOOLS%\registryfinder
2021-02-27 15:51:47 +01:00
2021-01-12 20:57:33 +01:00
echo ####### %0 #######
2021-01-30 21:38:46 +01:00
echo setting GLOBAL PATH variable ...
2021-01-31 00:41:55 +01:00
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
2021-02-27 15:51:47 +01:00
/v PATH /t REG_EXPAND_SZ /d "%newPATH%" /f
setx PATH "%newPATH%"
set PATH=%newPATH%
2021-01-30 21:38:46 +01:00
2021-01-12 20:57:33 +01:00
echo ####### %0 #######
2021-04-11 22:54:17 +02:00