You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
357 B
14 lines
357 B
on error resume next
|
|
set service = getobject("winmgmts:{impersonationLevel=impersonate,(shutdown)}")
|
|
|
|
set osset = service.instancesof ("Win32_OperatingSystem")
|
|
|
|
for each os in osset
|
|
result = os.Shutdown ()
|
|
|
|
if err <> 0 then
|
|
WScript.Echo Hex(Err.Number), Err.Description
|
|
else
|
|
WScript.Echo "Shutdown returned result " & result
|
|
end if
|
|
next
|