Jump to content

Recommended Posts

Posted
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?:(
Guest kerrymoralee9280
Posted
We have an RM network so use the LST - but at my old school which was Vanilla we used PSShutdown - worked a treat.
Posted

I use a kixtart startup script to add a scheduled job to all computers to shut them down at 10pm.

 

;===============================================
;       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

Posted
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!).
Posted
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.

Posted
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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...