Search the archive:
YaBB - Yet another Bulletin Board
 
   
 
Page Index Toggle Pages: 1
Send Topic Print
Remote MS-DOS Shutdown (Read 588 times)
Aug 17th, 2008 at 10:27am

EchoLdrWolf   Offline
Colonel
J-3 Cub Pilot
Newton, N.J.

Gender: male
Posts: 484
*****
 
Not..Really Sure Where To Put This One, So.....

I Have Been Trying To Remotely Shut Down My Desktop Computer (Windows XP) With My Laptop (Windows Vista) Using The MS-DOS Command
Code:
shutdown /s /m \\WOLF 

  \\WOLF Reffering To My Desktop PC's Name. I Have Allowed Remote Access Through The Windows Firewall On My PC And Activated It Through The "System" UI Box. But When I Run The Command On My Laptop In The CMD, It Keeps Saying, "Access Denied (5)"  Roll Eyes.  What Am I Missing?  Undecided
« Last Edit: Aug 31st, 2008 at 10:34am by EchoLdrWolf »  

<center> ... </center>
IP Logged
 
Reply #1 - Aug 31st, 2008 at 10:10am
Mynameisnemo   Ex Member

 
I've had a bit of experiance with the remote shutdown feature in xp:

Firstly make sure that the messenger service is switched on in the services section of admistritive tools, then goto start > run > cmd > "shutdown -i" then it should bring up a box saying "remote shutdown" then click add then the name of the computer on your network then click ok, at the bottom put a comment in i.e shutdown for maintainence, then click ok, if its worked there should be a box on the screen saying something like "your computer is in the middle of shutting down for maintainence"

what i'll do is i'll take some screenshots so that it explains better later on.
 
IP Logged
 
Reply #2 - Aug 31st, 2008 at 10:27am

EchoLdrWolf   Offline
Colonel
J-3 Cub Pilot
Newton, N.J.

Gender: male
Posts: 484
*****
 
Quote:
I've had a bit of experiance with the remote shutdown feature in xp:

Firstly make sure that the messenger service is switched on in the services section of admistritive tools, then goto start > run > cmd > "shutdown -i" then it should bring up a box saying "remote shutdown" then click add then the name of the computer on your network then click ok, at the bottom put a comment in i.e shutdown for maintainence, then click ok, if its worked there should be a box on the screen saying something like "your computer is in the middle of shutting down for maintainence"

what i'll do is i'll take some screenshots so that it explains better later on.

oh, thanks, but that still gives me an error, ive tried it. but  i've already figured it out another way. i made two batch files on my PC and just have to make a desktop connection and activate them.


Code:
shutdown /s /t 00 


For an immediate shutdown, and
Code:
shutdown /r /t 00 


For a restart.


(P.S. I know my way around DOS  Tongue. I already wrote my own program  Smiley)
It's incredibly simple but:
Code:
@echo off
title Macilizer
echo Macilizer starting...
ping -n 1 -w 2000 1.1.1.1 >nul
echo Initializing...
ping -n 1 -w 500 1.1.1.1 >nul
Choice /M "Do You Want To Run Mac Look-Alike Programs?"

If %errorlevel% EQU 2 goto no
If %errorlevel% EQU 1 goto yes

:yes
echo Starting Battery Meter
ping -n 1 -w 2000 1.1.1.1 >nul
start "" "C:\Program Files\Mioplanet Battery Meter\Mioplanet Battery Meter.exe"

echo Starting Konfablator
ping -n 1 -w 2000 1.1.1.1 >nul
start "" "C:\Program

echo Starting Object Dock
ping -n 1 -w 2000 1.1.1.1 >nul
start "" "C:\Program Files\Stardock\ObjectDock\ObjectDock.exe"

ping -n 1 -w 2000 1.1.1.1 >nul
echo Exiting....
ping -n 1 -w 2000 1.1.1.1 >nul
exit

:no
echo Exiting....
ping -n 1 -w 2000 1.1.1.1 >nul
exit 


 

<center> ... </center>
IP Logged
 
Page Index Toggle Pages: 1
Send Topic Print