+ Post New Thread
Results 1 to 9 of 9
Wireless 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
    289
    Thank Post
    149
    Thanked 23 Times in 19 Posts
    Rep Power
    15

    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
    Posts
    3,941
    Thank Post
    468
    Thanked 1,295 Times in 705 Posts
    Rep Power
    408
    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,124
    Thank Post
    364
    Thanked 271 Times in 233 Posts
    Rep Power
    71
    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
    85
    Thank Post
    7
    Thanked 5 Times in 5 Posts
    Rep Power
    16
    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
    4,345
    Thank Post
    268
    Thanked 190 Times in 162 Posts
    Rep Power
    72
    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
    14
    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,323
    Thank Post
    107
    Thanked 244 Times in 182 Posts
    Rep Power
    149
    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,989
    Thank Post
    991
    Thanked 1,019 Times in 600 Posts
    Rep Power
    698
    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: 117
    Last Post: 23rd May 2013, 02:11 PM
  2. UPS Won't Shut Up.
    By Greg_Jones in forum Hardware
    Replies: 12
    Last Post: 27th November 2007, 09: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
  •