// lyfzRepairDlg.cpp : 实现文件 // #include "stdafx.h" #include "lyfzRepair.h" #include "lyfzRepairDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // 用于应用程序“关于”菜单项的 CAboutDlg 对话框 class CAboutDlg : public CDialog { public: CAboutDlg(); // 对话框数据 enum { IDD = IDD_ABOUTBOX }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 // 实现 protected: DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) { } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) END_MESSAGE_MAP() // ClyfzRepairDlg 对话框 ClyfzRepairDlg::ClyfzRepairDlg(CWnd* pParent /*=NULL*/) : CDialog(ClyfzRepairDlg::IDD, pParent) { m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); // 加载滚动条位图; m_bmScroll.LoadBitmap(IDB_SCROLL); } void ClyfzRepairDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(ClyfzRepairDlg, CDialog) ON_WM_SYSCOMMAND() ON_WM_PAINT() ON_WM_QUERYDRAGICON() //}}AFX_MSG_MAP ON_WM_TIMER() ON_BN_CLICKED(BTN_ENABLE_GUEST, &ClyfzRepairDlg::OnBnClickedEnableGuest) ON_BN_CLICKED(BTN_SET_GUEST_MODE, &ClyfzRepairDlg::OnBnClickedSetGuestMode) ON_BN_CLICKED(BTN_DISABLE_NULL_PASSWORD, &ClyfzRepairDlg::OnBnClickedDisableNullPassword) ON_BN_CLICKED(BTN_DISABLE_SAM_ENUM, &ClyfzRepairDlg::OnBnClickedDisableSamEnum) ON_BN_CLICKED(BTN_PING, &ClyfzRepairDlg::OnBnClickedPing) ON_BN_CLICKED(BTN_TELNET, &ClyfzRepairDlg::OnBnClickedTelnet) ON_BN_CLICKED(BTN_WINSOCK_RESET, &ClyfzRepairDlg::OnBnClickedWinsockReset) ON_BN_CLICKED(BTN_INSTALL_NET4, &ClyfzRepairDlg::OnBnClickedInstallNet4) ON_BN_CLICKED(BTN_REINSTALL, &ClyfzRepairDlg::OnBnClickedReinstall) ON_BN_CLICKED(BTN_FIREWALLTURNOFF, &ClyfzRepairDlg::OnBnClickedFirewallturnoff) ON_BN_CLICKED(BTN_FIREWALLADDAPP, &ClyfzRepairDlg::OnBnClickedFirewalladdapp) ON_BN_CLICKED(RADIO_CLASSIC, &ClyfzRepairDlg::OnBnClickedClassic) ON_BN_CLICKED(RADIO_PLATINUM, &ClyfzRepairDlg::OnBnClickedPlatinum) END_MESSAGE_MAP() // ClyfzRepairDlg 消息处理程序 BOOL ClyfzRepairDlg::OnInitDialog() { CDialog::OnInitDialog(); // 将“关于...”菜单项添加到系统菜单中。 // IDM_ABOUTBOX 必须在系统命令范围内。 ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { BOOL bNameValid; CString strAboutMenu; bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX); ASSERT(bNameValid); if (!strAboutMenu.IsEmpty()) { pSysMenu->AppendMenu(MF_SEPARATOR); pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); } } // 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动 // 执行此操作 SetIcon(m_hIcon, TRUE); // 设置大图标 SetIcon(m_hIcon, FALSE); // 设置小图标 // TODO: 在此添加额外的初始化代码 ////////////////////////////////////////////////////////////////////////// // 给控件替换滚动条; SkinSB_Init(GetDlgItem(IDC_EDIT1)->GetSafeHwnd(), m_bmScroll); // 定时器处理; SetTimer(0, 1000, NULL); ////////////////////////////////////////////////////////////////////////// CString strText = _T(""); if ( utility::IsNetFramWork4() ) { strText += _T(".Net 4.0:已安装\r\n"); } else { strText += _T(".Net 4.0:未安装\r\n"); } if ( utility::IsGuestDisable() ) { strText += _T("组策略-来宾用户状态:未开启\r\n"); } else { strText += _T("组策略-来宾用户状态:已开启\r\n"); } DWORD byValue = 0; if ( utility::IsGuestMode(&byValue) ) { if (byValue) strText += _T("组策略-共享安全模式:仅来宾模式\r\n"); else strText += _T("组策略-共享安全模式:经典模式\r\n"); } else { strText += _T("组策略-来宾用户状态:获取信息失败\r\n"); } if ( utility::GetLimitBlankPasswordUse(&byValue) ) { if (byValue) strText += _T("组策略-空密码登录:启用\r\n"); else strText += _T("组策略-空密码登录:禁用\r\n"); } else { strText += _T("组策略-空密码登录:获取信息失败\r\n"); } if ( utility::GetRestrictAnonymous(&byValue) ) { if (byValue) strText += _T("组策略-SAM账户枚举:启用\r\n"); else strText += _T("组策略-SAM账户枚举:禁用\r\n"); } else { strText += _T("组策略-SAM账户枚举:获取信息失败\r\n"); } //SetDlgItemText(ET_MSG, strText); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->SetWindowText(strText); pEdit->SetSel(strText.GetLength(), strText.GetLength(), TRUE); g_bClassicVer = TRUE; CButton *pButton = (CButton*)GetDlgItem(RADIO_CLASSIC); pButton->SetCheck(g_bClassicVer); return TRUE; // 除非将焦点设置到控件,否则返回 TRUE } void ClyfzRepairDlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout; dlgAbout.DoModal(); } else { CDialog::OnSysCommand(nID, lParam); } } // 如果向对话框添加最小化按钮,则需要下面的代码 // 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序, // 这将由框架自动完成。 void ClyfzRepairDlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERASEBKGND, reinterpret_cast(dc.GetSafeHdc()), 0); // 使图标在工作区矩形中居中 int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); int x = (rect.Width() - cxIcon + 1) / 2; int y = (rect.Height() - cyIcon + 1) / 2; // 绘制图标 dc.DrawIcon(x, y, m_hIcon); } else { CDialog::OnPaint(); } } //当用户拖动最小化窗口时系统调用此函数取得光标 //显示。 HCURSOR ClyfzRepairDlg::OnQueryDragIcon() { return static_cast(m_hIcon); } void ClyfzRepairDlg::OnTimer(UINT_PTR nIDEvent) { // TODO: 在此添加消息处理程序代码和/或调用默认值 if ( nIDEvent == 0 ) { KillTimer(nIDEvent); CString strText = _T(""); utility::IsWin64Bit() ? strText = _T("64位操作系统\r\n"): strText = _T("32位操作系统\r\n"); utility::IsWinServer() ? strText += _T("服务器操作系统\r\n"): strText = _T("不是服务器操作系统\r\n"); if ( utility::IsWin2000()) { strText += _T("操作系统:Windows XP\r\n"); } else if ( utility::IsWinXP() ) { strText += _T("操作系统:Windows XP\r\n"); } // else if ( utility::IsWinXPSP1() ) // { // strText += _T("操作系统:Windows XP SP1\r\n"); // } // else if ( utility::IsWinXPSP2() ) // { // strText += _T("操作系统:Windows XP SP2\r\n"); // } // else if ( utility::IsWinXPSP3() ) // { // strText += _T("操作系统:Windows XP SP3\r\n"); // } else if ( utility::IsWinXP64BitEdition() ) { strText += _T("操作系统:Windows XP 64Bit Edition\r\n"); } else if ( utility::IsWinServer2003() ) { strText += _T("操作系统:Windows Server 2003\r\n"); } else if ( utility::IsWinVista() ) { strText += _T("操作系统:Windows Vista\r\n"); } else if ( utility::IsWinServer2008() ) { strText += _T("操作系统:Windows Server 2008\r\n"); } else if ( utility::IsWin7() ) { strText += _T("操作系统:Windows 7\r\n"); } else if ( utility::IsWinServer2008R2() ) { strText += _T("操作系统:Windows Server 2008 R2\r\n"); } else if ( utility::IsWin8() ) { strText += _T("操作系统:Windows 8\r\n"); } else if ( utility::IsWinServer2012() ) { strText += _T("操作系统:Windows Server 2012\r\n"); } else if ( utility::IsWin8Point1() ) { strText += _T("操作系统:Windows 8.1\r\n"); } else if ( utility::IsWinServer2012R2() ) { strText += _T("操作系统:Windows Server 2012 R2\r\n"); } else if ( utility::IsWin10() ) { strText += _T("操作系统:Windows 10\r\n"); } else if ( utility::IsWinServer2016() ) { strText += _T("操作系统:Windows Server 2016\r\n"); } SetDlgItemText(ET_INFO, strText); } CDialog::OnTimer(nIDEvent); } void ClyfzRepairDlg::OnBnClickedEnableGuest() // 开启来宾用户; { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); if ( utility::IsGuestDisable() ) { strText = _T("来宾用户账号开始开启\r\n"); if ( utility::ActiveGuest() ) strText += _T("来宾用户账号开启成功\r\n"); else strText += _T("来宾用户账号开启失败\r\n"); } else { strText = _T("来宾用户账号已开启\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedSetGuestMode() // 设置来宾模式; { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); DWORD dwValue = 0; if ( utility::IsGuestMode(&dwValue) ) { if ( dwValue ) { strText = _T("已经是【仅来宾模式】\r\n"); } else { strText = _T("当前是【经典模式】\r\n"); if ( utility::SetGuestMode() ) strText += _T("设置【仅来宾模式】成功\r\n"); else strText += _T("设置【仅来宾模式】失败\r\n"); } } else { strText = _T("获取来宾用户账号失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedDisableNullPassword() // 禁用空密码; { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); DWORD dwValue = 0; if ( utility::GetLimitBlankPasswordUse(&dwValue) ) { if ( dwValue ) { strText = _T("已启用【帐户: 使用空密码的本地帐户只允许进行控制台登录】\r\n"); if ( utility::DisableNullPassWord() ) strText += _T("禁用【帐户: 使用空密码的本地帐户只允许进行控制台登录】成功\r\n"); else strText += _T("禁用【帐户: 使用空密码的本地帐户只允许进行控制台登录】失败\r\n"); } else { strText = _T("已禁用【帐户: 使用空密码的本地帐户只允许进行控制台登录】\r\n"); } } else { strText = _T("获取【帐户: 使用空密码的本地帐户只允许进行控制台登录】失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedDisableSamEnum() { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); DWORD dwValue = 0; if ( utility::GetRestrictAnonymous(&dwValue) ) { if ( dwValue ) { strText = _T("已启用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】\r\n"); if ( utility::DisableSAMShareAndEnum() ) strText += _T("禁用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】成功\r\n"); else strText += _T("禁用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】失败\r\n"); } else { strText = _T("已禁用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】\r\n"); } } else { strText = _T("获取【网络访问: 不允许 SAM 帐户和共享的匿名枚举】失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedPing() { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); if (utility::ping(g_bClassicVer ? g_szClassicIPAddress : g_szServerIPAddress)) { strText = _T("ping 服务器 成功\r\n"); } else { strText = _T("ping 服务器 失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedTelnet() { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); if (utility::telnet(g_bClassicVer ? g_szClassicIPAddress : g_szServerIPAddress, g_bClassicVer ? g_dwClassicPort : g_dwServerPort)) { strText = _T("telnet 服务器 成功\r\n"); } else { strText = _T("telnet 服务器 失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedWinsockReset() { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); if ( utility::netsh_winsock_reset() ) { strText = _T("重置操作系统网络成功,请重启电脑\r\n"); AfxMessageBox(_T("重置操作系统网络成功,请重启电脑")); } else { strText = _T("重置操作系统网络失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedInstallNet4() { if (g_bClassicVer) { if ( MessageBox(_T("当前选择是经典版,确认要在经典版模式下安装.Net 4.0 ?"), _T("提示:"), MB_OKCANCEL) == IDCANCEL) return; } CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); if ( utility::IsNetFramWork4() ) { strText = _T("已经安装.Net 4.0,不用重复安装!\r\n"); if ( MessageBox(_T("系统已经安装.Net 4.0,是否重新安装!"), _T("提示:"), MB_OKCANCEL) == IDOK ) { if ( !PathFileExists(_T("dotNetFx40_Full_x86_x64.exe")) ) strText += _T("dotNetFx40_Full_x86_x64.exe 安装文件不存在\r\n"); else { strText = _T("开始静默安装.Net 4.0,请稍等几分钟……\r\n"); if ( utility::SetupNetFramWork(_T("dotNetFx40_Full_x86_x64.exe")) ) { strText += _T("安装.Net 4.0成功\r\n"); } else { strText += _T("安装.Net 4.0失败\r\n"); } } } } else { strText = _T("开始静默安装.Net 4.0,请稍等几分钟……\r\n"); if ( utility::SetupNetFramWork(_T("dotNetFx40_Full_x86_x64.exe")) ) { strText += _T("安装.Net 4.0成功\r\n"); } else { strText += _T("安装.Net 4.0失败\r\n"); } } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedReinstall() { if (g_bClassicVer) { MessageBox(_T("经典版不支持客户端重装功能!"), _T("提示:"), MB_OK); return; } CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); TCHAR szDrive[_MAX_DRIVE] = { 0 }; TCHAR szDir[_MAX_DIR] = { 0 }; TCHAR szFna[_MAX_DIR] = { 0 }; TCHAR szExt[_MAX_DIR] = { 0 }; TCHAR szModelPath[MAX_PATH] = { 0 }; ::GetModuleFileName(NULL, szModelPath, sizeof(szModelPath)); _tsplitpath_s(szModelPath, szDrive, szDir, szFna, szExt); _tcscpy_s(szModelPath, szDrive); _tcscat_s(szModelPath, szDir); TCHAR szExecute[MAX_PATH] = {0}; _stprintf_s(szExecute, _T("%sAutomaticUpdate.exe"), szModelPath); if ( !PathFileExists(szExecute)) strText = _T("安装程序【AutomaticUpdate.exe】不存在\r\n"); else { TCHAR szInstall[MAX_PATH] = {0}; _stprintf_s(szInstall, _T("%sUpdateTemp\\ClientNewLatestVersion.rar"), szModelPath); if ( !PathFileExists(szInstall)) strText = _T("安装文件【UpdateTemp\\ClientNewLatestVersion.rar】不存在\r\n"); else { SHELLEXECUTEINFO sei; memset(&sei, 0, sizeof(SHELLEXECUTEINFO)); sei.cbSize = sizeof(SHELLEXECUTEINFO); sei.hwnd = NULL; sei.lpVerb = _T("open"); //sei.fMask = SEE_MASK_NOCLOSEPROCESS | SEE_MASK_FLAG_NO_UI; sei.lpFile = szExecute; //sei.lpParameters = pszCommand; sei.lpDirectory = NULL; //sei.nShow = SW_HIDE; sei.hInstApp = NULL; if ( !ShellExecuteEx(&sei) ) { strText = _T("调用程序失败,重装失败\r\n"); } DWORD dw = GetLastError(); if ( sei.hProcess != NULL ) { if ( WaitForSingleObject(sei.hProcess, 1000*120) == WAIT_TIMEOUT ) {// 超时认为执行失败; if (sei.hProcess) CloseHandle(sei.hProcess); strText = _T("程序执行超时,重装失败\r\n"); } if (sei.hProcess) CloseHandle(sei.hProcess); } strText = _T("客户端重装成功\r\n"); } } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedFirewallturnoff() { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); if (utility::EnableFireWall(false)) { strText = _T("关闭防火墙成功\r\n"); } else { strText = _T("关闭防火墙失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } void ClyfzRepairDlg::OnBnClickedFirewalladdapp() { CString strText = _T(""); CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG); pEdit->GetWindowText(strText); INT nLen = strText.GetLength(); CString strExec = _T(""); if (g_bClassicVer) { strExec.Format(_T("%sSMSHandle.exe"), g_szModelPath); if (PathFileExists(strExec)) { if (utility::FireWallAddApp(strExec, _T("经典版-短信服务程序"), _T("经典版-短信服务程序"), _T("经典版服务端"))) { strText = _T("经典版-短信服务程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("经典版-短信服务程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sAutoRun.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("经典版-子服务程序"), _T("经典版-子服务程序"), _T("经典版服务端"))) { strText = _T("经典版-子服务程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("经典版-子服务程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sCPhotoFTPReceive.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("经典版-FTP服务端程序"), _T("经典版-FTP服务端程序"), _T("经典版服务端"))) { strText = _T("经典版-FTP服务端程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("经典版-FTP服务端程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sCPhotoFTPSend.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("经典版-FTP客户端程序"), _T("经典版-FTP客户端程序"), _T("经典版服务端"))) { strText = _T("经典版-FTP客户端程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("经典版-FTP客户端程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sDataSyncSend.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("经典版-集团版域名程序"), _T("经典版-集团版域名程序"), _T("经典版服务端"))) { strText = _T("经典版-集团版域名程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("经典版-集团版域名程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sDBServer.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("经典版-主服务端程序"), _T("经典版-主服务端程序"), _T("经典版服务端"))) { strText = _T("经典版-主服务端程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("经典版-主服务端程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } } else { strExec.Format(_T("%sLYFZ.MessageService.exe"), g_szModelPath); if (PathFileExists(strExec)) { if (utility::FireWallAddApp(strExec, _T("铂金版-短信服务程序"), _T("铂金版-短信服务程序"), _T("铂金版服务端"))) { strText = _T("铂金版-短信服务程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("铂金版-短信服务程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sLYFZ.SystmeService.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("铂金版-主服务程序"), _T("铂金版-主服务程序"), _T("铂金版服务端"))) { strText = _T("铂金版-主服务程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("铂金版-主服务程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sServiceManager.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("铂金版-窗口服务程序"), _T("铂金版-窗口服务程序"), _T("铂金版服务端"))) { strText = _T("铂金版-窗口服务程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("铂金版-窗口服务程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } strExec.Format(_T("%sWebServer4.0.exe"), g_szModelPath); if (PathFileExists(strExec)) { pEdit->GetWindowText(strText); nLen = strText.GetLength(); if (utility::FireWallAddApp(strExec, _T("铂金版-Web服务程序"), _T("铂金版-Web服务程序"), _T("铂金版服务端"))) { strText = _T("铂金版-Web服务程序:添加防火墙应用程序成功\r\n"); } else { strText = _T("铂金版-Web服务程序:添加防火墙应用程序失败\r\n"); } pEdit->SetSel(nLen, nLen, TRUE); pEdit->ReplaceSel(strText); } } } void ClyfzRepairDlg::OnBnClickedClassic() { g_bClassicVer = TRUE; } void ClyfzRepairDlg::OnBnClickedPlatinum() { g_bClassicVer = FALSE; }