摘要: 目的:用C++写一个自己的卸载程序来完成程序的卸载工作,同时运行后要删除卸载程序本身,并删除卸载程序所在的文件夹。注:在程序退出的时候写上 自己的卸载代码。// FileName: Uninstall.h#pragma onceclass CUninstall{private: // Exe文件名 CString m_strExeName; // Bat文件名 CString m_strBatName;public: // exe的路径 CString m_strExePath; // bat的路径 CString m_strBatPath; ... 阅读全文
posted @ 2013-05-31 15:27 放逐²º¹² 阅读(875) 评论(0) 推荐(0) 编辑