+ Post New Thread
Results 1 to 9 of 9
Networks Thread, Batch shut down in Technical; Does anyone know of or have a utility that will perform a batch shutdown. Similar to WOL but the other ...
  1. #1
    steve_nfi's Avatar
    Join Date
    Nov 2007
    Location
    Central London
    Posts
    281
    Thank Post
    141
    Thanked 22 Times in 18 Posts
    Rep Power
    13

    Question Batch shut down

    Does anyone know of or have a utility that will perform a batch shutdown. Similar to WOL but the other way. I've looked around at a few utilities but these have been more manual. We have Classlink here but I'm new to this product so don't know the workings of it yet. I have sent Viglen a few emails to ask if this is possible but had no response. A distinct lack of manuals online or otherwise. I just want to schedule a couple of little batch jobs to shutdown different areas at different times. Can anyone help please?

  2. IDG Tech News

  3. #2

    SYSMAN_MK's Avatar
    Join Date
    Sep 2005
    Location
    Milton Keynes
    Posts
    3,825
    Blog Entries
    2
    Thank Post
    433
    Thanked 1,175 Times in 669 Posts
    Rep Power
    329
    Look at the windows utility shutdown.exe

    shutdown.exe /s /m \\%computername%

    Stick a line for each PC into a batch file and schedule to run when you want.

  4. #3
    cookie_monster's Avatar
    Join Date
    May 2007
    Location
    Derbyshire
    Posts
    4,088
    Thank Post
    329
    Thanked 271 Times in 233 Posts
    Rep Power
    69
    We use Psshutdown here. It's pretty straight forward to schedule shutting down a room of PC's you just list them in a txt file.

    e.g D:\Shutdown\psshutdown @d:\Shutdown\computers.txt

    http://www.microsoft.com/technet/sys...sshutdown.mspx

  5. #4
    kerrymoralee9280
    Guest
    We have an RM network so use the LST - but at my old school which was Vanilla we used PSShutdown - worked a treat.

  6. #5

    Join Date
    Dec 2005
    Location
    Essex
    Posts
    87
    Thank Post
    7
    Thanked 5 Times in 5 Posts
    Rep Power
    14
    I use a kixtart startup script to add a scheduled job to all computers to shut them down at 10pm.

    Code:
    ;===============================================
    ;       Shutdown All Computers at 22:00
    ;===============================================
    
    Dim $ExcludedWorkstations[4]
    $ExcludedWorkstations[0] = "R0125"
    $ExcludedWorkstations[1] = "R1525"
    $ExcludedWorkstations[2] = "MBassant"
    $ExcludedWorkstations[3] = "Maintenance"
    
    
    IF ASCAN($ExcludedWorkstations,@WKSTA)="-1" and NOT EXIST("c:\WINDOWS\Tasks\At1.job")
    	SHELL ("at 22:00 shutdown -s -f -t 300 -c " + chr(34) + "Your computer is shutting down for the night. You have 5 minutes to save your work. If you wish to carry on using your computer you can turn it back on after it has shutdown." + chr(34))
    ENDIF

  7. #6
    enjay's Avatar
    Join Date
    Apr 2007
    Location
    Reading, Berkshire, UK
    Posts
    3,955
    Thank Post
    244
    Thanked 159 Times in 135 Posts
    Rep Power
    55
    We use beyondexec - same sort of principle as psshutdown (i.e. command lines in a batch file, one for each PC), but with a few extra features like giving users the option to cancel the shutdown; can also be used to force users to log off (very handy if the fire alarm goes while 40+ students are in the IT Suite, and the next lesson has started by the time you're allowed back in!).

  8. #7
    iatkinson's Avatar
    Join Date
    Jun 2007
    Location
    Blackburn
    Posts
    135
    Thank Post
    5
    Thanked 6 Times in 5 Posts
    Rep Power
    12
    Quote Originally Posted by SYSMAN_MK View Post
    Look at the windows utility shutdown.exe

    shutdown.exe /s /m \\%computername%

    Stick a line for each PC into a batch file and schedule to run when you want.
    That's the way I do it, works a treat.

  9. #8

    rush_tech's Avatar
    Join Date
    Jul 2006
    Location
    Nottingham
    Posts
    1,233
    Thank Post
    91
    Thanked 230 Times in 169 Posts
    Rep Power
    121
    shutdown /s /m \\computer /t: 60 /c: "message"
    in a batch file works here

  10. #9

    mattx's Avatar
    Join Date
    Jan 2007
    Posts
    8,472
    Thank Post
    889
    Thanked 890 Times in 532 Posts
    Rep Power
    596
    Quote Originally Posted by steve_nfi View Post
    Does anyone know of or have a utility that will perform a batch shutdown. Similar to WOL but the other way. I've looked around at a few utilities but these have been more manual. We have Classlink here but I'm new to this product so don't know the workings of it yet. I have sent Viglen a few emails to ask if this is possible but had no response. A distinct lack of manuals online or otherwise. I just want to schedule a couple of little batch jobs to shutdown different areas at different times. Can anyone help please?
    psshutdown is also on the Admin's Admin Bar - see below.

SHARE:
+ Post New Thread

Similar Threads

  1. Software to shut down PC's?
    By sidewinder in forum Windows
    Replies: 82
    Last Post: 20th February 2008, 10:40 AM
  2. UPS Won't Shut Up.
    By Greg_Jones in forum Hardware
    Replies: 12
    Last Post: 27th November 2007, 10:21 AM
  3. Shut Down Options
    By tomlin in forum How do you do....it?
    Replies: 9
    Last Post: 7th October 2007, 12:59 AM
  4. Shutdown batch script stalls if 1 PC is shut down
    By PrimaryTech in forum Scripts
    Replies: 8
    Last Post: 7th July 2007, 06:04 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •