C++卸载程序功能示例
注:在程序退出的时候写上 自己的卸载代码。
// FileName: Uninstall.h
#pragma once
class CUninstall
{
private:
// Exe文件名
CString m_strExeName;
// Bat文件名
CString m_strBatName;
public:
// exe的路径
CString m_strExePath;
// bat的路径
CString m_strBatPath;
CString m_unInstallPath;
public:
// 是否已经复制到临时文件夹
bool GetState (void);
// 初始化
void Init (void);
// 卸载程序
void Uninstall (void);
public:
CUninstall();
~CUninstall();
};
// FileName: Uninstall.cpp
#include "stdafx.h"
#include "Uninstall.h"
#include <atlconv.h>
#include <locale.h>
CUninstall::CUninstall() : m_strExeName(_T("XABC01.exe")), m_strBatName(_T("XABC01.bat"))
{
TCHAR strPath[MAX_PATH] = {0};
GetTempPath(MAX_PATH, strPath);
m_strExePath = strPath;
m_strExePath += m_strExeName;
memset(strPath, 0, MAX_PATH);
GetTempPath(MAX_PATH, strPath);
m_strBatPath = strPath;
m_strBatPath += m_strBatName;
}
CUninstall::~CUninstall()
{
}
void CUninstall::Uninstall (void)
{
// 获取exe所在路径
CString strExePath; // 临时问价下exe文件所在路径
HMODULE hModule = NULL;
TCHAR strPath[MAX_PATH] = {0};
HKEY hKey;
::GetModuleFileName(hModule, strPath, MAX_PATH);
strExePath = strPath;
// 拷贝到临时文件夹
CopyFile(strExePath, m_strExePath, FALSE);
int nIndex = strExePath.ReverseFind(_T('\\'));
strExePath = strExePath.Left(nIndex);
m_unInstallPath = strExePath;
HANDLE hande = CreateFile (m_strBatPath, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_ARCHIVE, NULL);
CloseHandle(hande);
// 写卸载批处理文件文件到磁盘
CString strBuffer;
strBuffer = _T(":repeat\ndel ");
strBuffer += _T("\"") + m_strExeName + _T("\"\nif exist ");
strBuffer += _T("\"") + m_strExeName + _T("\" goto repeat\n");
strBuffer += _T("rd /s /q \"") + strExePath + _T("\"\n");
strBuffer += _T("del \"") + m_strBatName + _T("\"");
CStdioFile file;
if (file.Open(m_strBatPath, CFile::modeWrite))
{
char* old_locale=_strdup(setlocale(LC_CTYPE,NULL) );
setlocale( LC_CTYPE,"chs");
file.WriteString(strBuffer);
file.Close();
setlocale( LC_CTYPE, old_locale ); //还原语言区域的设置
free( old_locale );//还原区域设定
}
else
{
::MessageBox (NULL, TEXT("文件写入磁盘失败!"), TEXT(""), MB_OK|MB_ICONEXCLAMATION);
}
}
bool CUninstall::GetState (void)
{
if (PathFileExists(m_strBatPath))
{
return true;
}
else
{
return false;
}
}
void CUninstall::Init (void)
{
}
栏 目:C语言
下一篇:c++ dynamic_cast与static_cast使用方法示例
本文标题:C++卸载程序功能示例
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/3908.html
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10深入理解C++中常见的关键字含义
- 01-10使用C++实现全排列算法的方法详解
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10C++大数模板(推荐)
- 01-10浅谈C/C++中的static与extern关键字的使用详解
- 01-10深入C/C++浮点数在内存中的存储方式详解
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法实例总结
- 01-11ajax实现页面的局部加载
- 01-10SublimeText编译C开发环境设置
- 04-02jquery与jsp,用jquery