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.
|
|
|
@echo off
|
|
|
|
setx /M path "%PATH%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul 2>&1
|
|
|
|
if NOT ["%errorlevel%"]==["0"] (
|
|
|
|
echo FAILED. Rerun with administrator privileges.
|
|
|
|
pause
|
|
|
|
) else (
|
|
|
|
echo Success!
|
|
|
|
pause
|
|
|
|
)
|