1
0
HID-Tools-Collection/add_to_path.cmd

28 lines
757 B
Batchfile
Raw Normal View History

2023-06-06 15:03:22 +02:00
@echo off
@setlocal
rem cobbled together by https://github.com/nefarius
set MYDIR=%~dp0
pushd "%MYDIR%"
SETLOCAL EnableDelayedExpansion
NET SESSION >nul 2>&1
IF %ERRORLEVEL% EQU 0 (
for /d %%d in (*.*) do (
2023-06-06 15:15:36 +02:00
rem grab current value
for /f "tokens=1,2*" %a in ('reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v path') do set currentValue=%c
rem concat previous and new value
set value=%currentValue%;%MYDIR%%%d
rem write back new value
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path /t REG_EXPAND_SZ /d "%value%" /f 2>nul
echo Added !value! to system PATH
2023-06-06 15:03:22 +02:00
)
) ELSE (
ECHO You need to run this script as Administrator
)
popd
endlocal
pause