qmk_firmware/1-setup-path-win.bat
Noah Andrews 8f1ea16ad5 Fix #198
2016-03-29 16:35:06 -04:00

14 lines
346 B
Batchfile

@echo off
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /f /v Path /t REG_SZ /d "%path%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul
echo.
if NOT ["%errorlevel%"]==["0"] (
echo FAILED. You probably just need to run the script with administrator privileges.
) else (
echo Success!
setx QMK QMK > nul
)
echo.
pause