Is it possible to make a batch file delete itself?
I have tried to make it execute another file to delete it but this did not work.
Does any one know how I cou
( del /q /f "%~f0" >nul 2>&1 & exit /b 0 )
Set this at the end of the script. (might not work if SHIFT command is used)
SHIFT