How to shutdown a remote computer

  • Thread starter Thread starter Navi
  • Start date Start date
N

Navi

I've been trying the command ----> " %windir%\system32\shutdown
-s -m\\192.168.61.28" in my Local LAN .........To Shut down remote
machine.
But nothing is happening,So wat shall i execute insted of it.....


Thanx

daya
 
The -s switch shuts down the local computer, so forget that switch.

-m [\\ComputerName] ComputerName specifies, by name, the remote computer
that you want to shut down.

-f Forces running applications to close.

shutdown -f -m \\ComputerName

With no -t switch, the machine will shut down immediately.

Open a command prompt, type: shutdown /? and hit Enter.

Shutdown HELP
Type or paste the following line into Start | Run and click OK...

hh ntcmds.chm::/shutdown.htm

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
 
Hi

You'd better try to open Start\RUN\ and write the next command:
shutdown /m \\computer -s

It worked for me.

Please tell me if it worked for you.

Regards

Wesley Vogel said:
The -s switch shuts down the local computer, so forget that switch.

-m [\\ComputerName] ComputerName specifies, by name, the remote computer
that you want to shut down.

-f Forces running applications to close.

shutdown -f -m \\ComputerName

With no -t switch, the machine will shut down immediately.

Open a command prompt, type: shutdown /? and hit Enter.

Shutdown HELP
Type or paste the following line into Start | Run and click OK...

hh ntcmds.chm::/shutdown.htm

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
Navi said:
I've been trying the command ----> " %windir%\system32\shutdown
-s -m\\192.168.61.28" in my Local LAN .........To Shut down remote
machine.
But nothing is happening,So wat shall i execute insted of it.....


Thanx

daya
 
Back
Top