正在运行的程序如何自我删除


1、适用于Windows NT及其后续版本的方法:   MoveFileEx(szSrcFile, NULL, MOVEFILE_DELAY_UNTIL_REBOOT);

缺点:只有在重新启动后才生效。


2、网上有人说可以用脚本或批处理文件,因为批处理文件是可以自删除的。试验了一下,批处理文件的确可以自删除,但是

要注意的是:在自删除命令执行后,其后的命令就不被执行了,因为文件已经不存在了:)

 

3、先复制(HANDLE hfile = CreateFile(szPathClone, 0, FILE_SHARE_READ, NULL,OPEN_EXISTING, FILE_FLAG_DELETE_ON_CLOSE, NULL);)一个自己,用复制品起动另一个进程,然后自己结束运行,则原来的EXE文件不被系统保护.这时由新进程删除原来的EXE文件,并且继续完成程序其他的功能。

新进程在运行结束后,复制品被自动删除。FILE_FLAG_DELETE_ON_CLOSE标志告诉操作系统,当和这个文件相关的所有句柄都被关闭之后(包括上面这个CREATEFILE创建的句炳),就把这个文件删除。

另外要注意的是:在复制品进程对原始程序操刀之前,应该等待原进程退出.

/**************************************************
DeleteMe.CPP
 
Module name: DeleteMe.cpp
Written by: Jeffrey Richter
Description: Allows an EXEcutable file to delete itself
*************************************************
*/
#include 
<Windows.h>
#include 
<stdlib.h>
#include 
<tchar.h>
int WINAPI WinMain(HINSTANCE h, HINSTANCE b, LPSTR psz, int n) {
    
// Is this the Original EXE or the clone EXE?
    
// If the command-line 1 argument, this is the Original EXE
    
// If the command-line >1 argument, this is the clone EXE     
    if (__argc == 1) {        
        
// Original EXE: Spawn clone EXE to delete this EXE
        
// Copy this EXEcutable image into the user's temp directory         
        TCHAR szPathOrig[_MAX_PATH], szPathClone[_MAX_PATH];
        GetModuleFileName(NULL, szPathOrig, _MAX_PATH);
        GetTempPath(_MAX_PATH, szPathClone);
        GetTempFileName(szPathClone, __TEXT(
"Del"), 0, szPathClone);
        CopyFile(szPathOrig, szPathClone, FALSE);
        
// Open the clone EXE using FILE_FLAG_DELETE_ON_CLOSE
        HANDLE hfile = CreateFile(szPathClone, 0, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_DELETE_ON_CLOSE, NULL);
        
// Spawn the clone EXE passing it our EXE's process handle
        
// and the full path name to the Original EXE file.
        TCHAR szCmdLine[512];
        HANDLE hProcessOrig 
= OpenProcess(SYNCHRONIZE, TRUE, GetCurrentProcessId());
        wsprintf(szCmdLine, __TEXT(
"%s %d \"%s\""), szPathClone, hProcessOrig, szPathOrig);
        STARTUPINFO si;
        ZeroMemory(
&si, sizeof(si));
        si.cb 
= sizeof(si);
        PROCESS_INFORMATION pi;
        CreateProcess(NULL, szCmdLine, NULL, NULL, TRUE, 
0, NULL, NULL, &si, &pi);
        CloseHandle(hProcessOrig);
        CloseHandle(hfile);
        
// This original process can now terminate.
    }    else {
        
// Clone EXE: When original EXE terminates, delete it
        HANDLE hProcessOrig = (HANDLE) _ttoi(__targv[1]);
        WaitForSingleObject(hProcessOrig, INFINITE);
        CloseHandle(hProcessOrig);
        DeleteFile(__targv[
2]);
        
// Insert code here to remove the subdirectory too (if desired).         
        
// The system will delete the clone EXE automatically
        
// because it was opened with FILE_FLAG_DELETE_ON_CLOSE
    }
    
return(0);
}

 



相关链接:

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q140570 

http://www.xfocus.net/articles/200402/672.html

http://www.qqgb.com/Program/CJJ/Cjjfile/Program_55821.html

http://blog.csdn.net/PhilLee/archive/2006/08/17/1085668.aspx

posted @ 2008-10-22 17:23  h2appy  阅读(1557)  评论(0编辑  收藏  举报