What is the exact syntax to shutdown remote Win2k8 server using WMIC?

(The reason WMIC must be used is because the remote machine in a different NT Domain and the local machine does not have access to that domain. WMIC takes /user: and /password: parameters and auths against remote machine itself.)

These don't work:

wmic /node:10.162.x.x /user:tech1\xxxx /password:xxxx os call Shutdown

Executing (Win32_OperatingSystem)->Shutdown()

ERROR: Code = 0x8004102f Description = Invalid method Parameter(s)

Facility = WMI


wmic /node:10.162.x.x /user:tech1\xxxx /password:xxxx os call Shutdown(1)

Verb Or Method has no input parameters.


wmic /node:10.162.x.x /user:tech1\xxxx /password:xxxx os call Win32Shutdown(1)

Executing (Win32_OperatingSystem)->Win32Shutdown()

ERROR:

Code = 0x8004102f

Description = Invalid method Parameter(s)

Facility = WMI


wmic /node:10.162.x.x /user:tech1\xxxx /password:xxxx path Win32_OperatingSystem call Shutdown(1)

Verb Or Method has no input parameters.


wmic /node:10.162.x.x /user:tech1\xxxx /password:xxxx path Win32_OperatingSystem call Shutdown

Executing (Win32_OperatingSystem)->Shutdown()

ERROR: Code = 0x8004102f Description = Invalid method Parameter(s) Facility = WMI

link|improve this question

25% accept rate
any reason to not just use shutdown /m – tony roth Jun 28 '10 at 21:19
@tony: "The reason WMIC must be used is because the remote machine in a different NT Domain and the local machine does not have access to that domain. WMIC takes /user: and /password: parameters and auths against remote machine itself." – zvolkov Jun 29 '10 at 14:24
gut feeling is that you'll need a where clause to qualify what your rebooting. – tony roth Jun 29 '10 at 15:16
feedback

2 Answers

I don't know why WMIC wont work, but the powershell version does work:

$cred = get-credential tech1\xxxxx
(gwmi -comp 10.162.x.x -cred $cred Win32_OperatingSystem).Shutdown()

You'll be prompted for the password, there's no way around it prompting you for the password.

link|improve this answer
this really is the way to go! – tony roth Jun 29 '10 at 19:02
can't script it then :( thanks anyway – zvolkov Jul 18 '10 at 1:40
feedback

the 1st one but you need a space between the ipaddress and the /user:

add a where clause

something like

wmic os where "version like '%'" call win32shutdown 2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.