#region ;**** 参数创建于 ACNWrapper_GUI ****
#AutoIt3Wrapper_outfile=C:\Users\Administrator\Desktop\00.exe
#endregion ;**** 参数创建于 ACNWrapper_GUI ****
#include <Misc.au3>
Global $sTitle = '自由人制作Windows 系统优化工具'
If _Singleton($sTitle, 1) = 0 Then
MsgBox(4096, "出错了", "本程序已经运行了一个实例!")
WinActivate($sTitle)
Exit
EndIf
$hGui = GUICreate($sTitle, 528, 363, -1, -1)
$Pic1 = GUICtrlCreatePic(@ScriptDir & "\ziyouren.jpg", 0, 0, 545, 65)
$Group1 = GUICtrlCreateGroup(" 优化网络工具", 8, 72, 145, 297)
$Button1 = GUICtrlCreateButton("网络加速器", 40, 120, 81, 33)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup(" 优化内存工具", 193, 71, 145, 297)
$Button2 = GUICtrlCreateButton("内存管理", 226, 114, 81, 33)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group3 = GUICtrlCreateGroup(" 运行磁盘工具", 378, 72, 145, 297)
$Button3 = GUICtrlCreateButton("diskgenius", 411, 116, 81, 33)
GUICtrlCreateLabel(" 特别鸣谢:afan poiu xiehuahere …… 等好友", 10, 350, 520, 360)
GUICtrlSetColor(-1, 0xFF0000)
GUICtrlCreateGroup("", -99, -99, 1, 1)
DllCall('user32.dll', 'int', 'AnimateWindow', 'hwnd', $hGui, 'int', 1000, 'long', 0x40010)
GUISetState()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
DllCall('user32.dll', 'int', 'AnimateWindow', 'hwnd', $hGui, 'int', 1000, 'long', 0x50010)
GUISetState()
Exit
Case $Button1
FileInstall("c:\Program Files\网络加速器.exe", "c:\Program Files\ziyouren\网络加速器.exe", 1)
Run(@ScriptDir & "\网络加速器.exe")
Case $Button2
FileInstall("c:\Program Files\内存管理.exe", "c:\Program Files\ziyouren\内存管理.exe", 1)
Run(@ScriptDir & "\内存管理.exe")
Case $Button3
FileInstall("c:\Program Files\diskgenius.exe", "c:\Program Files\ziyouren\diskgenius.exe", 1)
Run(@ScriptDir & "\diskgenius.exe")
Exit
EndSwitch
WEnd
如果我要在