本帖最后由 menfan 于 2009-9-21 13:42 编辑
#include <ServiceControl.au3>
Dim $nRet
; 开始/停止服务
If _ServiceExists("", "Windows Time") Then
MsgBox(4096,'测试服务' , 'Windows Time 服务存在!')
If _ServiceRunning("", "Windows Time") Then
MsgBox(4096,'测试服务' , 'Windows Time 服务运行')
If _StopService("", "Windows Time") Then
MsgBox(4096,'测试服务' , 'Windows Time 服务停止')
EndIf
Else
MsgBox(4096,'测试服务' , 'Windows Time 服务停止')
If _StartService("", "Windows Time") Then
MsgBox(4096,'测试服务' , 'Windows Time 服务开始')
EndIf
EndIf
Else
MsgBox(4096,'测试服务' , 'Windows Time服务不存在')
EndIf
奇怪,是不是ServiceControl.au3有问题呢? |