You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
202 B
Batchfile
10 lines
202 B
Batchfile
9 years ago
|
@echo off
|
||
9 years ago
|
setx /M path "%PATH%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul 2>&1
|
||
9 years ago
|
if NOT ["%errorlevel%"]==["0"] (
|
||
|
echo FAILED. Rerun with administrator privileges.
|
||
|
pause
|
||
|
) else (
|
||
|
echo Success!
|
||
|
pause
|
||
|
)
|