943,975 Members | Top Members by Rank

Ad:
You are currently viewing page 1 of this multi-page discussion thread
Nov 3rd, 2003
1

Restarting a windows 2000 computer from the command line

Expand Post »
I cant find any info for this withoud installing some app. I have a HUGE upgrade that I'm working on (50,000 PC's) and It would be really nice for some of the batch files to reboot the PC's automatically after they are done installing the components. Thanks.
Similar Threads
Reputation Points: 41
Solved Threads: 2
Junior Poster in Training
jjorgensen626 is offline Offline
69 posts
since Oct 2003
Nov 3rd, 2003
1

Re: Restarting a windows 2000 computer from the command line

Quote originally posted by jjorgensen626 ...
I have a HUGE upgrade that I'm working on (50,000 PC's) and it would be really nice for some of the batch files to reboot the PC's automatically after they are done installing the components.
EDIT: Shutdown.exe is part of an upgrade pack for 2000 (not included), but included in XP and Server 2003.
Last edited by TallCool1; Nov 3rd, 2003 at 1:21 pm.
Team Colleague
Reputation Points: 149
Solved Threads: 45
Practically a Posting Shark
TallCool1 is offline Offline
865 posts
since May 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

Put it into the startup folder ( C:\WINDOWS\Start Menu\Programs\StartUp\ ) and every time the owner turns on or reboots the computer, it'll crash, bringing up the blue screen of death. A reboot is almost always insured!
If you are insane enough, go to your start menu, click run. Type either: c:\con\con or c:\aux\aux And hit enter. Now enjoy as your computer crashes infront of your very eyes!! A SImple way : Go to Start Run Clear everythig thats already there type in: C:/CON/CON or C:/AUX/AUX and hit enter crashes instantly!! It also works when u type the command in the InterNet Explorers address bar.

Is that what your talking about!
Reputation Points: 25
Solved Threads: 8
Banned
)BIG"B"Affleck is offline Offline
766 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

Quote originally posted by )BIG"B"Affleck ...
Put it into the startup folder ( C:\WINDOWS\Start Menu\Programs\StartUp\ ) and every time the owner turns on or reboots the computer, it'll crash, bringing up the blue screen of death. A reboot is almost always insured!
If you are insane enough, go to your start menu, click run. Type either: c:\con\con or c:\aux\aux And hit enter. Now enjoy as your computer crashes infront of your very eyes!! A SImple way : Go to Start Run Clear everythig thats already there type in: C:/CON/CON or C:/AUX/AUX and hit enter crashes instantly!! It also works when u type the command in the InterNet Explorers address bar.

Is that what your talking about!
LOL thats a good one for future reference Big B, but not quite what i need, I dont want to crash the clients PC's but want the last line in my batch files to reboot the PC's. The only other 0ption I thought of was to copy shutdown.exe from within the batch file to a local directory, run it and either leave it or remove it when the last batch file is run.
Reputation Points: 41
Solved Threads: 2
Junior Poster in Training
jjorgensen626 is offline Offline
69 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

To operate this system most easily, you will need a small utility called WARM.COM (Ed: Possibly similar to one on MELB 526 - check first. I use one called REBOOT COM from the APC magazine set which enables me to do a cold boot or a warm one.) or some similar utility that does a warm boot to the system.

(If you don't have this utility there are other ways - see later.)

Now all we need to do is make a batch file for each group of applications that will copy the relevant set of files and then restart the system with a warm boot.

All the batch files could be combined into one file. However for clarity, they are shown here as separate files.

For example my batch file to set up my normal, small, applications

NORM.BAT

C:
CD\
COPY AUTOEXEC.NOR AUTOEXEC.BAT
COPY CONFIG.NOR CONFIG.SYS
WARM

The batch file to start Ventura is -

VEN.BAT

C:
CD\
COPY AUTOEXEC.VEN AUTOEXEC.BAT
COPY CONFIG.VEN CONFIG.SYS
WARM

And the Xerox Presents file is -

PRE.BAT

CD\
COPY AUTOEXEC.PRE AUTOEXEC.BAT
COPY CONFIG.PRE CONFIG.SYS
WARM

In each case, the CONFIG AND AUTOEXEC file for each application, are copied to become the actual CONFIG.SYS and AUTOEXEC.BAT files. Having done this the system is then restarted with 'WARM'.

Once the system restarts the CONFIG.SYS and AUTOEXEC.BAT files now contain the correct information for each group of applications.

Are you trying to EXECUTE the batch file over all 50,000 comps
Last edited by )BIG"B"Affleck; Nov 3rd, 2003 at 1:29 pm.
Reputation Points: 25
Solved Threads: 8
Banned
)BIG"B"Affleck is offline Offline
766 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

Last edited by )BIG"B"Affleck; Nov 3rd, 2003 at 1:44 pm.
Reputation Points: 25
Solved Threads: 8
Banned
)BIG"B"Affleck is offline Offline
766 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

I have to compile a cd to update all PC's to W2K SP4, IE 6 SP1, MS03-040-045, Adobe 6.0, and some other industry specific app upgrades. I have written some batch files but 2 they all need restarts before the next one can run. The batch files are all basically automated save this one problem (reboot automatically). I dont think I want to change the autoexec.bat or config.sys files, if there is an easier way, but if not then I'll try this (post #5). Thanks.
Reputation Points: 41
Solved Threads: 2
Junior Poster in Training
jjorgensen626 is offline Offline
69 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

Batch files - Shutdown and Reboot

Scroll down left and right .....DUDE its the MOTHERLOAD of BATS
Last edited by )BIG"B"Affleck; Nov 3rd, 2003 at 1:51 pm.
Reputation Points: 25
Solved Threads: 8
Banned
)BIG"B"Affleck is offline Offline
766 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

Quote originally posted by )BIG"B"Affleck ...
Batch files - Shutdown and Reboot

Scroll down left and right .....DUDE its the MOTHERLOAD of BATS
Thanks, I saw this one but notice what it says for 2000.
Reputation Points: 41
Solved Threads: 2
Junior Poster in Training
jjorgensen626 is offline Offline
69 posts
since Oct 2003
Nov 3rd, 2003
0

Re: Restarting a windows 2000 computer from the command line

My friend is telling me that(VIA) IISRESET /reboot can do it so I googled it.
Is this article of any use
http://searchwin2000.techtarget.com...omy=%2Fpr%2F5e3
Reputation Points: 25
Solved Threads: 8
Banned
)BIG"B"Affleck is offline Offline
766 posts
since Oct 2003

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Windows NT / 2000 / XP Forum Timeline: Removed Nvidia Card While Trying To Install Ati
Next Thread in Windows NT / 2000 / XP Forum Timeline: IE 6.0 doesn't show address bar, pull-down menu & short-cut icons when opened





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC