HI,
I'm looking for a script that can be run on a server every 5,6,7,8,9 pm that can run a user interruptable shutdown command to all our PC's
At the moment I have a simple .bat file that'll live on the server that runs the following command for every PC:
shutdown -s -m \\computername1 -t 30 -c "Shutdown in X"
shutdown -s -m \\computername2 -t 30 -c "Shutdown in X"
shutdown -s -m \\computername3 -t 30 -c "Shutdown in X"
and so on.
It's working great, except that it's not sending users the warning.
Does anyone have any ideas? Both for resolving the issue and for expanding on the scripts functionality.