lyfzRepairDlg.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. // lyfzRepairDlg.cpp : 实现文件
  2. //
  3. #include "stdafx.h"
  4. #include "lyfzRepair.h"
  5. #include "lyfzRepairDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // 用于应用程序“关于”菜单项的 CAboutDlg 对话框
  10. class CAboutDlg : public CDialog
  11. {
  12. public:
  13. CAboutDlg();
  14. // 对话框数据
  15. enum { IDD = IDD_ABOUTBOX };
  16. protected:
  17. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  18. // 实现
  19. protected:
  20. DECLARE_MESSAGE_MAP()
  21. };
  22. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  23. {
  24. }
  25. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. }
  29. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  30. END_MESSAGE_MAP()
  31. // ClyfzRepairDlg 对话框
  32. ClyfzRepairDlg::ClyfzRepairDlg(CWnd* pParent /*=NULL*/)
  33. : CDialog(ClyfzRepairDlg::IDD, pParent)
  34. {
  35. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  36. // 加载滚动条位图;
  37. m_bmScroll.LoadBitmap(IDB_SCROLL);
  38. }
  39. void ClyfzRepairDlg::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. }
  43. BEGIN_MESSAGE_MAP(ClyfzRepairDlg, CDialog)
  44. ON_WM_SYSCOMMAND()
  45. ON_WM_PAINT()
  46. ON_WM_QUERYDRAGICON()
  47. //}}AFX_MSG_MAP
  48. ON_WM_TIMER()
  49. ON_BN_CLICKED(BTN_ENABLE_GUEST, &ClyfzRepairDlg::OnBnClickedEnableGuest)
  50. ON_BN_CLICKED(BTN_SET_GUEST_MODE, &ClyfzRepairDlg::OnBnClickedSetGuestMode)
  51. ON_BN_CLICKED(BTN_DISABLE_NULL_PASSWORD, &ClyfzRepairDlg::OnBnClickedDisableNullPassword)
  52. ON_BN_CLICKED(BTN_DISABLE_SAM_ENUM, &ClyfzRepairDlg::OnBnClickedDisableSamEnum)
  53. ON_BN_CLICKED(BTN_PING, &ClyfzRepairDlg::OnBnClickedPing)
  54. ON_BN_CLICKED(BTN_TELNET, &ClyfzRepairDlg::OnBnClickedTelnet)
  55. ON_BN_CLICKED(BTN_WINSOCK_RESET, &ClyfzRepairDlg::OnBnClickedWinsockReset)
  56. ON_BN_CLICKED(BTN_INSTALL_NET4, &ClyfzRepairDlg::OnBnClickedInstallNet4)
  57. ON_BN_CLICKED(BTN_REINSTALL, &ClyfzRepairDlg::OnBnClickedReinstall)
  58. ON_BN_CLICKED(BTN_FIREWALLTURNOFF, &ClyfzRepairDlg::OnBnClickedFirewallturnoff)
  59. ON_BN_CLICKED(BTN_FIREWALLADDAPP, &ClyfzRepairDlg::OnBnClickedFirewalladdapp)
  60. ON_BN_CLICKED(RADIO_CLASSIC, &ClyfzRepairDlg::OnBnClickedClassic)
  61. ON_BN_CLICKED(RADIO_PLATINUM, &ClyfzRepairDlg::OnBnClickedPlatinum)
  62. END_MESSAGE_MAP()
  63. // ClyfzRepairDlg 消息处理程序
  64. BOOL ClyfzRepairDlg::OnInitDialog()
  65. {
  66. CDialog::OnInitDialog();
  67. // 将“关于...”菜单项添加到系统菜单中。
  68. // IDM_ABOUTBOX 必须在系统命令范围内。
  69. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  70. ASSERT(IDM_ABOUTBOX < 0xF000);
  71. CMenu* pSysMenu = GetSystemMenu(FALSE);
  72. if (pSysMenu != NULL)
  73. {
  74. BOOL bNameValid;
  75. CString strAboutMenu;
  76. bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX);
  77. ASSERT(bNameValid);
  78. if (!strAboutMenu.IsEmpty())
  79. {
  80. pSysMenu->AppendMenu(MF_SEPARATOR);
  81. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  82. }
  83. }
  84. // 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动
  85. // 执行此操作
  86. SetIcon(m_hIcon, TRUE); // 设置大图标
  87. SetIcon(m_hIcon, FALSE); // 设置小图标
  88. // TODO: 在此添加额外的初始化代码
  89. //////////////////////////////////////////////////////////////////////////
  90. // 给控件替换滚动条;
  91. SkinSB_Init(GetDlgItem(IDC_EDIT1)->GetSafeHwnd(), m_bmScroll);
  92. // 定时器处理;
  93. SetTimer(0, 1000, NULL);
  94. //////////////////////////////////////////////////////////////////////////
  95. CString strText = _T("");
  96. if ( utility::IsNetFramWork4() )
  97. {
  98. strText += _T(".Net 4.0:已安装\r\n");
  99. }
  100. else
  101. {
  102. strText += _T(".Net 4.0:未安装\r\n");
  103. }
  104. if ( utility::IsGuestDisable() )
  105. {
  106. strText += _T("组策略-来宾用户状态:未开启\r\n");
  107. }
  108. else
  109. {
  110. strText += _T("组策略-来宾用户状态:已开启\r\n");
  111. }
  112. DWORD byValue = 0;
  113. if ( utility::IsGuestMode(&byValue) )
  114. {
  115. if (byValue)
  116. strText += _T("组策略-共享安全模式:仅来宾模式\r\n");
  117. else
  118. strText += _T("组策略-共享安全模式:经典模式\r\n");
  119. }
  120. else
  121. {
  122. strText += _T("组策略-来宾用户状态:获取信息失败\r\n");
  123. }
  124. if ( utility::GetLimitBlankPasswordUse(&byValue) )
  125. {
  126. if (byValue)
  127. strText += _T("组策略-空密码登录:启用\r\n");
  128. else
  129. strText += _T("组策略-空密码登录:禁用\r\n");
  130. }
  131. else
  132. {
  133. strText += _T("组策略-空密码登录:获取信息失败\r\n");
  134. }
  135. if ( utility::GetRestrictAnonymous(&byValue) )
  136. {
  137. if (byValue)
  138. strText += _T("组策略-SAM账户枚举:启用\r\n");
  139. else
  140. strText += _T("组策略-SAM账户枚举:禁用\r\n");
  141. }
  142. else
  143. {
  144. strText += _T("组策略-SAM账户枚举:获取信息失败\r\n");
  145. }
  146. //SetDlgItemText(ET_MSG, strText);
  147. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  148. pEdit->SetWindowText(strText);
  149. pEdit->SetSel(strText.GetLength(), strText.GetLength(), TRUE);
  150. g_bClassicVer = TRUE;
  151. CButton *pButton = (CButton*)GetDlgItem(RADIO_CLASSIC);
  152. pButton->SetCheck(g_bClassicVer);
  153. return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
  154. }
  155. void ClyfzRepairDlg::OnSysCommand(UINT nID, LPARAM lParam)
  156. {
  157. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  158. {
  159. CAboutDlg dlgAbout;
  160. dlgAbout.DoModal();
  161. }
  162. else
  163. {
  164. CDialog::OnSysCommand(nID, lParam);
  165. }
  166. }
  167. // 如果向对话框添加最小化按钮,则需要下面的代码
  168. // 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序,
  169. // 这将由框架自动完成。
  170. void ClyfzRepairDlg::OnPaint()
  171. {
  172. if (IsIconic())
  173. {
  174. CPaintDC dc(this); // 用于绘制的设备上下文
  175. SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
  176. // 使图标在工作区矩形中居中
  177. int cxIcon = GetSystemMetrics(SM_CXICON);
  178. int cyIcon = GetSystemMetrics(SM_CYICON);
  179. CRect rect;
  180. GetClientRect(&rect);
  181. int x = (rect.Width() - cxIcon + 1) / 2;
  182. int y = (rect.Height() - cyIcon + 1) / 2;
  183. // 绘制图标
  184. dc.DrawIcon(x, y, m_hIcon);
  185. }
  186. else
  187. {
  188. CDialog::OnPaint();
  189. }
  190. }
  191. //当用户拖动最小化窗口时系统调用此函数取得光标
  192. //显示。
  193. HCURSOR ClyfzRepairDlg::OnQueryDragIcon()
  194. {
  195. return static_cast<HCURSOR>(m_hIcon);
  196. }
  197. void ClyfzRepairDlg::OnTimer(UINT_PTR nIDEvent)
  198. {
  199. // TODO: 在此添加消息处理程序代码和/或调用默认值
  200. if ( nIDEvent == 0 )
  201. {
  202. KillTimer(nIDEvent);
  203. CString strText = _T("");
  204. utility::IsWin64Bit() ? strText = _T("64位操作系统\r\n"): strText = _T("32位操作系统\r\n");
  205. utility::IsWinServer() ? strText += _T("服务器操作系统\r\n"): strText = _T("不是服务器操作系统\r\n");
  206. if ( utility::IsWin2000())
  207. {
  208. strText += _T("操作系统:Windows XP\r\n");
  209. }
  210. else if ( utility::IsWinXP() )
  211. {
  212. strText += _T("操作系统:Windows XP\r\n");
  213. }
  214. // else if ( utility::IsWinXPSP1() )
  215. // {
  216. // strText += _T("操作系统:Windows XP SP1\r\n");
  217. // }
  218. // else if ( utility::IsWinXPSP2() )
  219. // {
  220. // strText += _T("操作系统:Windows XP SP2\r\n");
  221. // }
  222. // else if ( utility::IsWinXPSP3() )
  223. // {
  224. // strText += _T("操作系统:Windows XP SP3\r\n");
  225. // }
  226. else if ( utility::IsWinXP64BitEdition() )
  227. {
  228. strText += _T("操作系统:Windows XP 64Bit Edition\r\n");
  229. }
  230. else if ( utility::IsWinServer2003() )
  231. {
  232. strText += _T("操作系统:Windows Server 2003\r\n");
  233. }
  234. else if ( utility::IsWinVista() )
  235. {
  236. strText += _T("操作系统:Windows Vista\r\n");
  237. }
  238. else if ( utility::IsWinServer2008() )
  239. {
  240. strText += _T("操作系统:Windows Server 2008\r\n");
  241. }
  242. else if ( utility::IsWin7() )
  243. {
  244. strText += _T("操作系统:Windows 7\r\n");
  245. }
  246. else if ( utility::IsWinServer2008R2() )
  247. {
  248. strText += _T("操作系统:Windows Server 2008 R2\r\n");
  249. }
  250. else if ( utility::IsWin8() )
  251. {
  252. strText += _T("操作系统:Windows 8\r\n");
  253. }
  254. else if ( utility::IsWinServer2012() )
  255. {
  256. strText += _T("操作系统:Windows Server 2012\r\n");
  257. }
  258. else if ( utility::IsWin8Point1() )
  259. {
  260. strText += _T("操作系统:Windows 8.1\r\n");
  261. }
  262. else if ( utility::IsWinServer2012R2() )
  263. {
  264. strText += _T("操作系统:Windows Server 2012 R2\r\n");
  265. }
  266. else if ( utility::IsWin10() )
  267. {
  268. strText += _T("操作系统:Windows 10\r\n");
  269. }
  270. else if ( utility::IsWinServer2016() )
  271. {
  272. strText += _T("操作系统:Windows Server 2016\r\n");
  273. }
  274. SetDlgItemText(ET_INFO, strText);
  275. }
  276. CDialog::OnTimer(nIDEvent);
  277. }
  278. void ClyfzRepairDlg::OnBnClickedEnableGuest() // 开启来宾用户;
  279. {
  280. CString strText = _T("");
  281. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  282. pEdit->GetWindowText(strText);
  283. INT nLen = strText.GetLength();
  284. if ( utility::IsGuestDisable() )
  285. {
  286. strText = _T("来宾用户账号开始开启\r\n");
  287. if ( utility::ActiveGuest() )
  288. strText += _T("来宾用户账号开启成功\r\n");
  289. else
  290. strText += _T("来宾用户账号开启失败\r\n");
  291. }
  292. else
  293. {
  294. strText = _T("来宾用户账号已开启\r\n");
  295. }
  296. pEdit->SetSel(nLen, nLen, TRUE);
  297. pEdit->ReplaceSel(strText);
  298. }
  299. void ClyfzRepairDlg::OnBnClickedSetGuestMode() // 设置来宾模式;
  300. {
  301. CString strText = _T("");
  302. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  303. pEdit->GetWindowText(strText);
  304. INT nLen = strText.GetLength();
  305. DWORD dwValue = 0;
  306. if ( utility::IsGuestMode(&dwValue) )
  307. {
  308. if ( dwValue )
  309. {
  310. strText = _T("已经是【仅来宾模式】\r\n");
  311. }
  312. else
  313. {
  314. strText = _T("当前是【经典模式】\r\n");
  315. if ( utility::SetGuestMode() )
  316. strText += _T("设置【仅来宾模式】成功\r\n");
  317. else
  318. strText += _T("设置【仅来宾模式】失败\r\n");
  319. }
  320. }
  321. else
  322. {
  323. strText = _T("获取来宾用户账号失败\r\n");
  324. }
  325. pEdit->SetSel(nLen, nLen, TRUE);
  326. pEdit->ReplaceSel(strText);
  327. }
  328. void ClyfzRepairDlg::OnBnClickedDisableNullPassword() // 禁用空密码;
  329. {
  330. CString strText = _T("");
  331. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  332. pEdit->GetWindowText(strText);
  333. INT nLen = strText.GetLength();
  334. DWORD dwValue = 0;
  335. if ( utility::GetLimitBlankPasswordUse(&dwValue) )
  336. {
  337. if ( dwValue )
  338. {
  339. strText = _T("已启用【帐户: 使用空密码的本地帐户只允许进行控制台登录】\r\n");
  340. if ( utility::DisableNullPassWord() )
  341. strText += _T("禁用【帐户: 使用空密码的本地帐户只允许进行控制台登录】成功\r\n");
  342. else
  343. strText += _T("禁用【帐户: 使用空密码的本地帐户只允许进行控制台登录】失败\r\n");
  344. }
  345. else
  346. {
  347. strText = _T("已禁用【帐户: 使用空密码的本地帐户只允许进行控制台登录】\r\n");
  348. }
  349. }
  350. else
  351. {
  352. strText = _T("获取【帐户: 使用空密码的本地帐户只允许进行控制台登录】失败\r\n");
  353. }
  354. pEdit->SetSel(nLen, nLen, TRUE);
  355. pEdit->ReplaceSel(strText);
  356. }
  357. void ClyfzRepairDlg::OnBnClickedDisableSamEnum()
  358. {
  359. CString strText = _T("");
  360. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  361. pEdit->GetWindowText(strText);
  362. INT nLen = strText.GetLength();
  363. DWORD dwValue = 0;
  364. if ( utility::GetRestrictAnonymous(&dwValue) )
  365. {
  366. if ( dwValue )
  367. {
  368. strText = _T("已启用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】\r\n");
  369. if ( utility::DisableSAMShareAndEnum() )
  370. strText += _T("禁用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】成功\r\n");
  371. else
  372. strText += _T("禁用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】失败\r\n");
  373. }
  374. else
  375. {
  376. strText = _T("已禁用【网络访问: 不允许 SAM 帐户和共享的匿名枚举】\r\n");
  377. }
  378. }
  379. else
  380. {
  381. strText = _T("获取【网络访问: 不允许 SAM 帐户和共享的匿名枚举】失败\r\n");
  382. }
  383. pEdit->SetSel(nLen, nLen, TRUE);
  384. pEdit->ReplaceSel(strText);
  385. }
  386. void ClyfzRepairDlg::OnBnClickedPing()
  387. {
  388. CString strText = _T("");
  389. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  390. pEdit->GetWindowText(strText);
  391. INT nLen = strText.GetLength();
  392. if (utility::ping(g_bClassicVer ? g_szClassicIPAddress : g_szServerIPAddress))
  393. {
  394. strText = _T("ping 服务器 成功\r\n");
  395. }
  396. else
  397. {
  398. strText = _T("ping 服务器 失败\r\n");
  399. }
  400. pEdit->SetSel(nLen, nLen, TRUE);
  401. pEdit->ReplaceSel(strText);
  402. }
  403. void ClyfzRepairDlg::OnBnClickedTelnet()
  404. {
  405. CString strText = _T("");
  406. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  407. pEdit->GetWindowText(strText);
  408. INT nLen = strText.GetLength();
  409. if (utility::telnet(g_bClassicVer ? g_szClassicIPAddress : g_szServerIPAddress, g_bClassicVer ? g_dwClassicPort : g_dwServerPort))
  410. {
  411. strText = _T("telnet 服务器 成功\r\n");
  412. }
  413. else
  414. {
  415. strText = _T("telnet 服务器 失败\r\n");
  416. }
  417. pEdit->SetSel(nLen, nLen, TRUE);
  418. pEdit->ReplaceSel(strText);
  419. }
  420. void ClyfzRepairDlg::OnBnClickedWinsockReset()
  421. {
  422. CString strText = _T("");
  423. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  424. pEdit->GetWindowText(strText);
  425. INT nLen = strText.GetLength();
  426. if ( utility::netsh_winsock_reset() )
  427. {
  428. strText = _T("重置操作系统网络成功,请重启电脑\r\n");
  429. AfxMessageBox(_T("重置操作系统网络成功,请重启电脑"));
  430. }
  431. else
  432. {
  433. strText = _T("重置操作系统网络失败\r\n");
  434. }
  435. pEdit->SetSel(nLen, nLen, TRUE);
  436. pEdit->ReplaceSel(strText);
  437. }
  438. void ClyfzRepairDlg::OnBnClickedInstallNet4()
  439. {
  440. if (g_bClassicVer)
  441. {
  442. if ( MessageBox(_T("当前选择是经典版,确认要在经典版模式下安装.Net 4.0 ?"), _T("提示:"), MB_OKCANCEL) == IDCANCEL)
  443. return;
  444. }
  445. CString strText = _T("");
  446. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  447. pEdit->GetWindowText(strText);
  448. INT nLen = strText.GetLength();
  449. if ( utility::IsNetFramWork4() )
  450. {
  451. strText = _T("已经安装.Net 4.0,不用重复安装!\r\n");
  452. if ( MessageBox(_T("系统已经安装.Net 4.0,是否重新安装!"), _T("提示:"), MB_OKCANCEL) == IDOK )
  453. {
  454. if ( !PathFileExists(_T("dotNetFx40_Full_x86_x64.exe")) )
  455. strText += _T("dotNetFx40_Full_x86_x64.exe 安装文件不存在\r\n");
  456. else
  457. {
  458. strText = _T("开始静默安装.Net 4.0,请稍等几分钟……\r\n");
  459. if ( utility::SetupNetFramWork(_T("dotNetFx40_Full_x86_x64.exe")) )
  460. {
  461. strText += _T("安装.Net 4.0成功\r\n");
  462. }
  463. else
  464. {
  465. strText += _T("安装.Net 4.0失败\r\n");
  466. }
  467. }
  468. }
  469. }
  470. else
  471. {
  472. strText = _T("开始静默安装.Net 4.0,请稍等几分钟……\r\n");
  473. if ( utility::SetupNetFramWork(_T("dotNetFx40_Full_x86_x64.exe")) )
  474. {
  475. strText += _T("安装.Net 4.0成功\r\n");
  476. }
  477. else
  478. {
  479. strText += _T("安装.Net 4.0失败\r\n");
  480. }
  481. }
  482. pEdit->SetSel(nLen, nLen, TRUE);
  483. pEdit->ReplaceSel(strText);
  484. }
  485. void ClyfzRepairDlg::OnBnClickedReinstall()
  486. {
  487. if (g_bClassicVer)
  488. {
  489. MessageBox(_T("经典版不支持客户端重装功能!"), _T("提示:"), MB_OK);
  490. return;
  491. }
  492. CString strText = _T("");
  493. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  494. pEdit->GetWindowText(strText);
  495. INT nLen = strText.GetLength();
  496. TCHAR szDrive[_MAX_DRIVE] = { 0 };
  497. TCHAR szDir[_MAX_DIR] = { 0 };
  498. TCHAR szFna[_MAX_DIR] = { 0 };
  499. TCHAR szExt[_MAX_DIR] = { 0 };
  500. TCHAR szModelPath[MAX_PATH] = { 0 };
  501. ::GetModuleFileName(NULL, szModelPath, sizeof(szModelPath));
  502. _tsplitpath_s(szModelPath, szDrive, szDir, szFna, szExt);
  503. _tcscpy_s(szModelPath, szDrive);
  504. _tcscat_s(szModelPath, szDir);
  505. TCHAR szExecute[MAX_PATH] = {0};
  506. _stprintf_s(szExecute, _T("%sAutomaticUpdate.exe"), szModelPath);
  507. if ( !PathFileExists(szExecute))
  508. strText = _T("安装程序【AutomaticUpdate.exe】不存在\r\n");
  509. else
  510. {
  511. TCHAR szInstall[MAX_PATH] = {0};
  512. _stprintf_s(szInstall, _T("%sUpdateTemp\\ClientNewLatestVersion.rar"), szModelPath);
  513. if ( !PathFileExists(szInstall))
  514. strText = _T("安装文件【UpdateTemp\\ClientNewLatestVersion.rar】不存在\r\n");
  515. else
  516. {
  517. SHELLEXECUTEINFO sei;
  518. memset(&sei, 0, sizeof(SHELLEXECUTEINFO));
  519. sei.cbSize = sizeof(SHELLEXECUTEINFO);
  520. sei.hwnd = NULL;
  521. sei.lpVerb = _T("open");
  522. //sei.fMask = SEE_MASK_NOCLOSEPROCESS | SEE_MASK_FLAG_NO_UI;
  523. sei.lpFile = szExecute;
  524. //sei.lpParameters = pszCommand;
  525. sei.lpDirectory = NULL;
  526. //sei.nShow = SW_HIDE;
  527. sei.hInstApp = NULL;
  528. if ( !ShellExecuteEx(&sei) )
  529. {
  530. strText = _T("调用程序失败,重装失败\r\n");
  531. }
  532. DWORD dw = GetLastError();
  533. if ( sei.hProcess != NULL )
  534. {
  535. if ( WaitForSingleObject(sei.hProcess, 1000*120) == WAIT_TIMEOUT )
  536. {// 超时认为执行失败;
  537. if (sei.hProcess)
  538. CloseHandle(sei.hProcess);
  539. strText = _T("程序执行超时,重装失败\r\n");
  540. }
  541. if (sei.hProcess)
  542. CloseHandle(sei.hProcess);
  543. }
  544. strText = _T("客户端重装成功\r\n");
  545. }
  546. }
  547. pEdit->SetSel(nLen, nLen, TRUE);
  548. pEdit->ReplaceSel(strText);
  549. }
  550. void ClyfzRepairDlg::OnBnClickedFirewallturnoff()
  551. {
  552. CString strText = _T("");
  553. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  554. pEdit->GetWindowText(strText);
  555. INT nLen = strText.GetLength();
  556. if (utility::EnableFireWall(false))
  557. {
  558. strText = _T("关闭防火墙成功\r\n");
  559. }
  560. else
  561. {
  562. strText = _T("关闭防火墙失败\r\n");
  563. }
  564. pEdit->SetSel(nLen, nLen, TRUE);
  565. pEdit->ReplaceSel(strText);
  566. }
  567. void ClyfzRepairDlg::OnBnClickedFirewalladdapp()
  568. {
  569. CString strText = _T("");
  570. CEdit *pEdit = (CEdit*)GetDlgItem(ET_MSG);
  571. pEdit->GetWindowText(strText);
  572. INT nLen = strText.GetLength();
  573. CString strExec = _T("");
  574. if (g_bClassicVer)
  575. {
  576. strExec.Format(_T("%sSMSHandle.exe"), g_szModelPath);
  577. if (PathFileExists(strExec))
  578. {
  579. if (utility::FireWallAddApp(strExec, _T("经典版-短信服务程序"), _T("经典版-短信服务程序"), _T("经典版服务端")))
  580. {
  581. strText = _T("经典版-短信服务程序:添加防火墙应用程序成功\r\n");
  582. }
  583. else
  584. {
  585. strText = _T("经典版-短信服务程序:添加防火墙应用程序失败\r\n");
  586. }
  587. pEdit->SetSel(nLen, nLen, TRUE);
  588. pEdit->ReplaceSel(strText);
  589. }
  590. strExec.Format(_T("%sAutoRun.exe"), g_szModelPath);
  591. if (PathFileExists(strExec))
  592. {
  593. pEdit->GetWindowText(strText);
  594. nLen = strText.GetLength();
  595. if (utility::FireWallAddApp(strExec, _T("经典版-子服务程序"), _T("经典版-子服务程序"), _T("经典版服务端")))
  596. {
  597. strText = _T("经典版-子服务程序:添加防火墙应用程序成功\r\n");
  598. }
  599. else
  600. {
  601. strText = _T("经典版-子服务程序:添加防火墙应用程序失败\r\n");
  602. }
  603. pEdit->SetSel(nLen, nLen, TRUE);
  604. pEdit->ReplaceSel(strText);
  605. }
  606. strExec.Format(_T("%sCPhotoFTPReceive.exe"), g_szModelPath);
  607. if (PathFileExists(strExec))
  608. {
  609. pEdit->GetWindowText(strText);
  610. nLen = strText.GetLength();
  611. if (utility::FireWallAddApp(strExec, _T("经典版-FTP服务端程序"), _T("经典版-FTP服务端程序"), _T("经典版服务端")))
  612. {
  613. strText = _T("经典版-FTP服务端程序:添加防火墙应用程序成功\r\n");
  614. }
  615. else
  616. {
  617. strText = _T("经典版-FTP服务端程序:添加防火墙应用程序失败\r\n");
  618. }
  619. pEdit->SetSel(nLen, nLen, TRUE);
  620. pEdit->ReplaceSel(strText);
  621. }
  622. strExec.Format(_T("%sCPhotoFTPSend.exe"), g_szModelPath);
  623. if (PathFileExists(strExec))
  624. {
  625. pEdit->GetWindowText(strText);
  626. nLen = strText.GetLength();
  627. if (utility::FireWallAddApp(strExec, _T("经典版-FTP客户端程序"), _T("经典版-FTP客户端程序"), _T("经典版服务端")))
  628. {
  629. strText = _T("经典版-FTP客户端程序:添加防火墙应用程序成功\r\n");
  630. }
  631. else
  632. {
  633. strText = _T("经典版-FTP客户端程序:添加防火墙应用程序失败\r\n");
  634. }
  635. pEdit->SetSel(nLen, nLen, TRUE);
  636. pEdit->ReplaceSel(strText);
  637. }
  638. strExec.Format(_T("%sDataSyncSend.exe"), g_szModelPath);
  639. if (PathFileExists(strExec))
  640. {
  641. pEdit->GetWindowText(strText);
  642. nLen = strText.GetLength();
  643. if (utility::FireWallAddApp(strExec, _T("经典版-集团版域名程序"), _T("经典版-集团版域名程序"), _T("经典版服务端")))
  644. {
  645. strText = _T("经典版-集团版域名程序:添加防火墙应用程序成功\r\n");
  646. }
  647. else
  648. {
  649. strText = _T("经典版-集团版域名程序:添加防火墙应用程序失败\r\n");
  650. }
  651. pEdit->SetSel(nLen, nLen, TRUE);
  652. pEdit->ReplaceSel(strText);
  653. }
  654. strExec.Format(_T("%sDBServer.exe"), g_szModelPath);
  655. if (PathFileExists(strExec))
  656. {
  657. pEdit->GetWindowText(strText);
  658. nLen = strText.GetLength();
  659. if (utility::FireWallAddApp(strExec, _T("经典版-主服务端程序"), _T("经典版-主服务端程序"), _T("经典版服务端")))
  660. {
  661. strText = _T("经典版-主服务端程序:添加防火墙应用程序成功\r\n");
  662. }
  663. else
  664. {
  665. strText = _T("经典版-主服务端程序:添加防火墙应用程序失败\r\n");
  666. }
  667. pEdit->SetSel(nLen, nLen, TRUE);
  668. pEdit->ReplaceSel(strText);
  669. }
  670. }
  671. else
  672. {
  673. strExec.Format(_T("%sLYFZ.MessageService.exe"), g_szModelPath);
  674. if (PathFileExists(strExec))
  675. {
  676. if (utility::FireWallAddApp(strExec, _T("铂金版-短信服务程序"), _T("铂金版-短信服务程序"), _T("铂金版服务端")))
  677. {
  678. strText = _T("铂金版-短信服务程序:添加防火墙应用程序成功\r\n");
  679. }
  680. else
  681. {
  682. strText = _T("铂金版-短信服务程序:添加防火墙应用程序失败\r\n");
  683. }
  684. pEdit->SetSel(nLen, nLen, TRUE);
  685. pEdit->ReplaceSel(strText);
  686. }
  687. strExec.Format(_T("%sLYFZ.SystmeService.exe"), g_szModelPath);
  688. if (PathFileExists(strExec))
  689. {
  690. pEdit->GetWindowText(strText);
  691. nLen = strText.GetLength();
  692. if (utility::FireWallAddApp(strExec, _T("铂金版-主服务程序"), _T("铂金版-主服务程序"), _T("铂金版服务端")))
  693. {
  694. strText = _T("铂金版-主服务程序:添加防火墙应用程序成功\r\n");
  695. }
  696. else
  697. {
  698. strText = _T("铂金版-主服务程序:添加防火墙应用程序失败\r\n");
  699. }
  700. pEdit->SetSel(nLen, nLen, TRUE);
  701. pEdit->ReplaceSel(strText);
  702. }
  703. strExec.Format(_T("%sServiceManager.exe"), g_szModelPath);
  704. if (PathFileExists(strExec))
  705. {
  706. pEdit->GetWindowText(strText);
  707. nLen = strText.GetLength();
  708. if (utility::FireWallAddApp(strExec, _T("铂金版-窗口服务程序"), _T("铂金版-窗口服务程序"), _T("铂金版服务端")))
  709. {
  710. strText = _T("铂金版-窗口服务程序:添加防火墙应用程序成功\r\n");
  711. }
  712. else
  713. {
  714. strText = _T("铂金版-窗口服务程序:添加防火墙应用程序失败\r\n");
  715. }
  716. pEdit->SetSel(nLen, nLen, TRUE);
  717. pEdit->ReplaceSel(strText);
  718. }
  719. strExec.Format(_T("%sWebServer4.0.exe"), g_szModelPath);
  720. if (PathFileExists(strExec))
  721. {
  722. pEdit->GetWindowText(strText);
  723. nLen = strText.GetLength();
  724. if (utility::FireWallAddApp(strExec, _T("铂金版-Web服务程序"), _T("铂金版-Web服务程序"), _T("铂金版服务端")))
  725. {
  726. strText = _T("铂金版-Web服务程序:添加防火墙应用程序成功\r\n");
  727. }
  728. else
  729. {
  730. strText = _T("铂金版-Web服务程序:添加防火墙应用程序失败\r\n");
  731. }
  732. pEdit->SetSel(nLen, nLen, TRUE);
  733. pEdit->ReplaceSel(strText);
  734. }
  735. }
  736. }
  737. void ClyfzRepairDlg::OnBnClickedClassic()
  738. {
  739. g_bClassicVer = TRUE;
  740. }
  741. void ClyfzRepairDlg::OnBnClickedPlatinum()
  742. {
  743. g_bClassicVer = FALSE;
  744. }