Function EXERunner(IPAddress)
set ww=createobject("wbemscripting.swbemlocator")
set cc=ww.connectserver(IPAddress,"root/cimv2","用户名/密码","用户名/密码")
Set pp=cc.get("Win32_Process")
pp.create("cmd /c E:\Scripthost\abc.bat")
EXERunner=IPAddress&" is ok!"
End Function