Click here to Skip to main content
Licence Public Domain
First Posted 26 Apr 2003
Views 112,896
Bookmarked 54 times

Writing a self destructing exe file

By Michael Walz | 26 Apr 2003
Explains how you can have a program delete itself once it has finished running without a reboot
4 votes, 14.3%
1
1 vote, 3.6%
2
3 votes, 10.7%
3
6 votes, 21.4%
4
14 votes, 50.0%
5
4.20/5 - 28 votes
4 removed
μ 3.91, σa 2.54 [?]

Introduction

Uninstall programs typically want to delete themselves at the end of the un-installation, but executable cannot delete itself by simply calling the DeleteFile function. By calling the Selfdestruct() function showed below before program exit, the calling executable will be destroyed as soon as possible. The method shown in this article works on all Win32 platforms and there is no need to reboot.

Using the code

Just call the Selfdestruct() function before program exit.

// this is the name of the temporary .bat file
static const char tempbatname[] = "_uninsep.bat" ;

void Selfdestruct() 
{
  // temporary .bat file
  static char templ[] = 
    ":Repeat\r\n"
    "del \"%s\"\r\n"
    "if exist \"%s\" goto Repeat\r\n"
    "rmdir \"%s\"\r\n"
    "del \"%s\"" ;


  char modulename[_MAX_PATH] ;    // absolute path of calling .exe file
  char temppath[_MAX_PATH] ;      // absolute path of temporary .bat file
  char folder[_MAX_PATH] ;

  GetTempPath(_MAX_PATH, temppath) ;
  strcat(temppath, tempbatname) ;

  GetModuleFileName(NULL, modulename, MAX_PATH) ;
  strcpy (folder, modulename) ;
  char *pb = strrchr(folder, '\\');
  if (pb != NULL)
    *pb = 0 ;

  HANDLE hf ;
  
  hf = CreateFile(temppath, GENERIC_WRITE, 0, NULL, 
              CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL) ;
  
  if (hf != INVALID_HANDLE_VALUE)
  {
    DWORD len ;
    char *bat ;

    bat = (char*)alloca(strlen(templ) + 
               strlen(modulename) * 2 + strlen(temppath) + 20) ;

    wsprintf(bat, templ, modulename, modulename, folder, temppath) ;

    WriteFile(hf, bat, strlen(bat), &len, NULL) ;
    CloseHandle(hf) ;

    ShellExecute(NULL, "open", temppath, NULL, NULL, SW_HIDE);
  }
}

How it works

Let's assume the executable that wants to destroy itself is located in c:\myfolder\selfdestruct.exe. The Selfdestruct() function will create following .bat in the computers temp folder and then launches it:

    :Repeat
    del "c:\myfolder\selfdestruct.exe"
    if exist "c:\myfolder\selfdestruct.exe" goto Repeat
    rmdir "c:\myfolder"
    del "c:\temp\_uninsep.bat" ;

The .bat file will try to delete the c:\myfolder\selfdestruct.exe over and over until it finally succeeds (that is as soon as selfdestruct.exe has finished execution. Then it tries to remove the containing folder (here c:\myfolder) which will work only if it is empty and finally deletes itself. Fortunately .bat files can delete themselves.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication

About the Author

Michael Walz



Switzerland Switzerland

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalfolder doesnot get deleted Pinmemberlearningvisualc1:04 18 Mar '10  
QuestionWhat is this templ????????????? PinmemberRAJEEV_RSD0:05 25 Sep '09  
AnswerRe: What is this templ????????????? PinmemberMichael Walz0:44 25 Sep '09  
Generalbat file Pinmembertetadenovicia8:09 26 Jun '08  
QuestionSelf-Destructing Files Pinmembertao111:56 7 May '08  
GeneralHere's another safe and simple way PinmemberPaul Sanders (AlpineSoft)8:02 20 Oct '07  
QuestionIssue with deleting the directory Pinmemberccoffman976:52 29 Dec '06  
AnswerRe: Issue with deleting the directory PinmemberSF123417:43 20 Feb '07  
GeneralRe: Issue with deleting the directory Pinmemberccoffman974:09 21 Feb '07  
QuestionModification Question PinmemberDark_Xion7:51 1 Oct '06  
GeneralI wrote something like this... PinmemberKhan Shere22:22 18 Jan '05  
GeneralRe: I wrote something like this... PinmemberKhan Shere8:59 21 Jul '05  
GeneralBug fixes and enhancements PinmemberDennis Jiang10:37 4 Jul '03  
GeneralRe: Bug fixes and enhancements Pinmemberamethystwu21:23 24 Oct '05  
GeneralOther methods PinmemberPapa4:34 28 Apr '03  
GeneralRe: Other methods - Clickety PinmemberPhil J Pearson8:06 29 Apr '03  
http://freespace.virgin.net/james.brown7/tuts/selfdel.htm[^]
 
Papa
 

while (TRUE)
Papa.WillLove ( Bebe ) ;
 

GeneralRe: Other methods: More Methods PinmemberDoctorKoch0:40 15 Jan '07  
GeneralReally really small article HTML bug PinmemberDominik Reichl10:26 27 Apr '03  
GeneralBatch doesn't terminate PinmemberDominik Reichl10:16 27 Apr '03  
GeneralRe: Batch doesn't terminate Pinmemberjlap77714:45 27 Apr '03  
GeneralRe: Batch doesn't terminate PinmemberDominik Reichl7:45 28 Apr '03  
GeneralRe: Batch doesn't terminate PinmemberDJWALSH3:08 28 Apr '03  
GeneralRe: Batch doesn't terminate PinmemberDominik Reichl7:43 28 Apr '03  
GeneralRe: Batch doesn't terminate PinmemberMichael Walz7:50 28 Apr '03  
GeneralRe: Batch doesn't terminate PinmemberDominik Reichl8:49 28 Apr '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120210.1 | Last Updated 27 Apr 2003
Article Copyright 2003 by Michael Walz
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid