自己编写安装制作程序

类别:VC语言 点击:0 评论:0 推荐:

 


自己编写安装制作程序


邓振波


  这是我以前写的实现安装程序的一个类,包含了一些的安装程序所用的函数,当然,由于工作和时间的关系,没有完全的写完整,有不少地方还需要改进,现在把这个类提供给大家,让有兴趣的同道进行更深入的研究。
  本类实现的功能包括检查系统版本,操作注册表,目录、文件操作, 建立快捷方式,执行外部程序,重新启动计算机,注册OCX、DLL组件等等基本的安装函数。
  因为整个源程序比较长,所以这里只列出该类的头文件,源文件从 这里 下载,连接程序的时候,你要添加version.lib连接。


class CSetup
{
public:

int GetWindowsVersion(CString& strVersion,WORD& wLangage,WORD& wCodePage);//得到Windows的版本,返回值为版本,参数返回具体的语言信息

BOOL RegistrActiveServer(LPCSTR lpszOcxFileName,BOOL bRegister=TRUE);//注册OCX、DLL

BOOL IsServer(); //系统是否Serve版
BOOL CheckWindowVersion(BOOL& bNT,DWORD& dwMajor,DWORD& dwMinor);//检测Windows的版本信息
BOOL IsNT();//系统是否Windows NT
BOOL IsWin2000();//系统是否Win200
BOOL IsWinNT4();//系统是否NT4
BOOL IsWinNT351();//
BOOL IsWindows98();//系统是否98及以上
BOOL IsWindows95();//系统是否95及其它


UINT GetTempFileName(CString& strUniquName,LPCSTR lpPrefixString=NULL);//得到唯一的临时文件名
DWORD GetSysTempPath(CString& strTempPath);//得到系统临时目录



LONG RegWriteData(LPCTSTR pszSection, LPCTSTR pszEntry, const BYTE* btVal, DWORD dwLength,HKEY hKey=HKEY_LOCAL_MACHINE);//往注册表写数据
LONG RegWriteLong(LPCTSTR pszSection, LPCTSTR pszEntry, DWORD dwVal, HKEY hKey=HKEY_LOCAL_MACHINE);//往注册表写整数
LONG RegWriteString(LPCTSTR pszSection, LPCTSTR pszEntry, LPCSTR pszVal, HKEY hKey=HKEY_LOCAL_MACHINE);//往注册表写字符串
LONG RegReadData(LPCTSTR pszSection, LPCTSTR pszEntry, BYTE* btVal,DWORD dwLength, HKEY hKey=HKEY_LOCAL_MACHINE);//从注册表读数据
BOOL DeleteKey(LPCTSTR pszSubKey,LPCTSTR pszValueName,HKEY hKey=HKEY_LOCAL_MACHINE);//删除注册表的键值,pszValueName不为空则整个Key下面的所有键值均删
LONG RegReadLong(LPCTSTR pszSection, LPCTSTR pszEntry, DWORD &dwVal, HKEY hKey=HKEY_LOCAL_MACHINE);//从注册表里读取整数
LONG RegReadString(LPCTSTR pszSection,LPCTSTR pszEntry, CString& sVal,HKEY hKey=HKEY_LOCAL_MACHINE);//从注册表里读取字符串


DWORD GetMemorySize(CString& strDecriSzie);//得到内存大小
BOOL GetDriverFreeSpace(char chDriver,CString& strDescript);//得到磁盘剩余空间



BOOL ShutDownComputer(UINT uFlag=EWX_REBOOT);//重起或关闭计算机

BOOL CreateProcess(LPSTR lpszFileName);//执行一个程序
BOOL ShellExecuteEx(LPCSTR lpsFileName,LPCSTR lpszParam=NULL,LPCSTR lpszMode="OPEN");//执行某些文件或程序


BOOL CreateShortCutOnDesktop(LPCSTR lpszFullPathName,LPCSTR lpszLinkName);//桌面建立快捷方式
BOOL CreateShortCutOnProgramGroup(LPCSTR lpszFullPathName,LPCSTR lpszLinkName);//开始菜单建立快捷方式
BOOL CreateShortCut(const CString strSrcPath,const CString strPathLink);//建立快捷方式


BOOL AddToStartup(LPCSTR lpszFullFilePath,BOOL bRunOnce=FALSE);//添加随计算机启动而启动程序


BOOL DeleteFolder(LPCSTR lpzsFolderName,DWORD dwDelFlags=0);//删除文件夹
BOOL CreatePath(LPCSTR lpszFullPathName);//建立目录
BOOL GetStartupPath(CString &strPath);//得到启动目录
BOOL GetDesktopPath(CString& strPath);//得到桌面路径
BOOL GetProgramGroupPath(CString& strPath);//得到程序组路径
BOOL GetWindowsPath(CString& strWinPath,CString& strWinSysPath);//得到Windows目录
BOOL DeleteFile(LPCSTR lpszFileName);//删除文件
BOOL CopyFile(LPCSTR lpszSrc,LPCSTR lpszDec,DWORD dwFlag=FOF_ALLOWUNDO|FOF_SILENT);//复制文件


BOOL SetupCheckIEVersion(int& MajorVersion,int& MinorVersion);//检测IE的版本


int StartupAtRoot(LPCTSTR lpszName,LPCTSTR lpszExeFile,HKEY nRootKey=NULL);////程序启动而启动
virtual ~CSetup();



private:
CRegKey m_regKey; //注册表操作
DWORD m_dwVersion; //用于判断版本
BOOL m_bNT;
public:
DWORD m_dwWinVerMajor;//系统版本
DWORD m_dwWinVerMinor;//系统版本
};


下载源文件


更多文章在http://seesi.51.net


 

本文地址:http://com.8s8s.com/it/it2916.htm