Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to shut down a remote Windows computer (ex. a Windows computer connected in LAN.) I have tried a lot but I could not find the solution. Does anyone have an idea on how to shut down the remote computer? Any language would work.

share|improve this question
This isn't OS-agnostic. If you're using Microsoft Windows, you've got answers already. If you're using something else, you might want to specify it. – David Thornley Mar 27 '09 at 14:29

7 Answers

up vote 6 down vote accepted

Assuming a windows box.

In VB.NET or c#

Process.Start("shutdown","-s -m \\Machine");

Should do the trick.

See
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx
http://www.ss64.com/nt/shutdown.html

EDIT: Note - shutdown.exe was only available in Resource Kits prior to Windows 2003

share|improve this answer
I believe that shutdown.exe was only available in Resource Kits prior to Windows 2003 (after which it is available in the default Windows installation). – ephemient Mar 27 '09 at 2:25
@ephement: shutdown.exe is present on Windows XP. It may also be present on Windows 2000. – Powerlord Apr 9 '09 at 13:08

You can connect to any computer on the domain and shut it down using the Win32Shutdown method of the WMI class Win32_OperatingSystem. In .NET you access WMI through the System.Management namespace.

share|improve this answer

If the remote computer is a Windows box you can use WMI (Windows Management Instrumentation).

http://msdn.microsoft.com/en-us/library/aa394582.aspx

Use the Reboot() method of the Win32_OperatingSystem class. You could do this for example using Windows Script, C#, VB .net

share|improve this answer
  1. Connect to the host through SSH
  2. user@domain:~$ sudo shutdown -h now
share|improve this answer

Invoke shutdown -s -m \\computername command through a primitive used to start processes (like Process.Start() or CreateProcess()).

share|improve this answer

Not sure if this code sample works, but it illustrates how you can use WMI to remotely shutdown a computer.

share|improve this answer

From a linux box [net rpc shutdown]

or call initiateSystemShutdown

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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