echo off cls echo Creating the C:\PS\ folder for journal uploads, etc... echo ------------------------------------------------------ echo. if exist c:\ps\ echo You already have this folder. & goto :DONE REM Did not exist, so create. REM If fails, probably because no Admin rights, like at MSN md c:\ps\ if %errorlevel% GTR 0 echo Error %errorlevel% - you do not have Administrator rights. Contact local IT to create this folder. :DONE echo. echo Done. echo. pause