How to make .BAT file delete it self after completion? I have a simple bat file that terminates a process. I want that .BAT file to delete itself
|
Note that the DEL line better be the last thing you intend to execute inside the batch file, otherwise you're out of luck :) [Edit: Missed the "killing other process" part - my batch file originally launched a process] |
|||||||||
|
|
You didn't mention the OS, but if this is on Windows XP Professional and you have the appropriate permissions, you can have the batch file schedule a one-shot Windows Scheduled Task to delete the file at a later time. Use the Otherwise, you typically can't delete a file that is being executed, since that has the potential for all sorts of nastiness. Additionally, trying to delete an executable in use is viewed as very suspicious behavior by any number of antivirus programs, so it's likely that you would run afoul of these as well. |
|||
|
|
|
You can't. The batch file is locked by the operating system during its execution. |
|||
|
|
|
Just add this command at the last line of your batch file: Del batch_file_name.bat Where batch_file_name is the name of your batch file Cheers |
|||||
|