$Form1 = GUICreate("Form1", 615, 438, 306, 243)
GUISetFont(16, 400, 0, "华文中宋")
$iRadio1 = GUICtrlCreateRadio("禁止CMD", 144, 72, 120, 30)
$iRadio2 = GUICtrlCreateRadio("解除CMD", 280, 72, 120, 30)
GUIStartGroup()
$iRadio3 = GUICtrlCreateRadio("禁止注册表", 138, 142, 130, 30)
$iRadio4 = GUICtrlCreateRadio("解除注册表", 280, 144, 130, 30)
GUIStartGroup()
$iRadio5 = GUICtrlCreateRadio("禁止组策略", 144, 200, 130, 30)
$iRadio6 = GUICtrlCreateRadio("解除组策略", 280, 200, 130, 30)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
EndSwitch
WEnd
|