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 ...
-
10th March 2008, 04:11 PM #1
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?
-
-
IDG Tech News
-
10th March 2008, 04:16 PM #2 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.
-
-
10th March 2008, 04:19 PM #3 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
-
-
10th March 2008, 04:26 PM #4 We have an RM network so use the LST - but at my old school which was Vanilla we used PSShutdown - worked a treat.
-
-
10th March 2008, 05:28 PM #5
- 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
-
-
11th March 2008, 08:45 AM #6 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!).
-
-
11th March 2008, 08:55 AM #7 
Originally Posted by
SYSMAN_MK
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.
-
-
11th March 2008, 08:58 AM #8 shutdown /s /m \\computer /t: 60 /c: "message"
in a batch file works here
-
-
11th March 2008, 09:18 AM #9 
Originally Posted by
steve_nfi
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: 
Similar Threads
-
By sidewinder in forum Windows
Replies: 117
Last Post: 23rd May 2013, 02:11 PM
-
By Greg_Jones in forum Hardware
Replies: 12
Last Post: 27th November 2007, 09:21 AM
-
By tomlin in forum How do you do....it?
Replies: 9
Last Post: 7th October 2007, 12:59 AM
-
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
-
Forum Rules