How do I make a batch file terminate upon encountering an error?

Check the errorlevel in an if statement, and then exit /b (exit the batch file only, not the entire cmd.exe process) for values other than 0. same-executable-over-and-over.exe /with different “parameters” if %errorlevel% neq 0 exit /b %errorlevel% If you want the value of the errorlevel to propagate outside of your batch file if %errorlevel% neq … Read more

How to delete files/subfolders in a specific directory at the command prompt in Windows

rmdir is my all time favorite command for the job. It works for deleting huge files and folders with subfolders. A backup is not created, so make sure that you have copied your files safely before running this command. RMDIR “FOLDERNAME” /S /Q This silently removes the folder and all files and subfolders.

I want to delete all bin and obj folders to force all projects to rebuild everything

This depends on the shell you prefer to use. If you are using the cmd shell on Windows then the following should work: FOR /F “tokens=*” %%G IN (‘DIR /B /AD /S bin’) DO RMDIR /S /Q “%%G” FOR /F “tokens=*” %%G IN (‘DIR /B /AD /S obj’) DO RMDIR /S /Q “%%G” If you … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)