$Form1 = GUICreate("Form1", 615, 438, 306, 243)
GUICtrlCreateLabel("CMD和批处理", 10, 20, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 20, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 20, 120, 20)
GUIStartGroup()
GUICtrlCreateLabel("注册表", 10, 60, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 60, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 60, 120, 20)
GUIStartGroup()
GUICtrlCreateLabel("任务管理器", 10, 100, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 100, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 100, 120, 20)
GUIStartGroup()
GUICtrlCreateLabel("修改密码/锁定本机", 10, 140, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 140, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 140, 120, 20)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
EndSwitch
WEnd