Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
So you want a batch file that doesn't show any windows, kills a process and deletes itself after completion. Just out of curiosity. Why? – Martin Smith May 22 '10 at 17:31
@Martin Smith I am wirking on a wary interesting opensource Adobe Air 2.0 Native application... =) So soon you'll see – Spender May 22 '10 at 17:54

4 Answers

up vote 11 down vote accepted
@ECHO OFF
SETLOCAL
SET someOtherProgram=SomeOtherProgram.exe
TASKKILL /IM "%someOtherProgram%"
DEL "%~f0"

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]

share|improve this answer
Can you explan this a little bit please? What is someotherprogram.exe and what do you punt inside it? – Ricardo Polo Oct 10 '11 at 21:05
@Richard: SomeOtherProgram.exe could be changed to be any program. For example, notepad.exe. This is the program that will be killed, and it doesn't matter what that program does - this batch file doesn't care. It just uses TaskKill to kill a task with that exe name. Does this clear it up? If so, did you think it needs to be added to the answer? If not, please explain in more detail what parts you understand, and which you don't. – Merlyn Morgan-Graham Oct 11 '11 at 0:17
1  
Thank you for answer @Merlyn. My fault, I didnt read well the question. I was figuring why do you need to kill a process to delete a bat itself. :) – Ricardo Polo Oct 11 '11 at 0:28

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 schtasks command, documented here.

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.

share|improve this answer

You can't. The batch file is locked by the operating system during its execution.

share|improve this answer

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

share|improve this answer
1  
It does not work. – Ricardo Polo Oct 10 '11 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.