0

How would i go about logging off or shutting down all of the computers (Windows XP) just in my ICT suite using a script or other method?

Thanks

joec
  • 187
  • 1
  • 9

1 Answers1

1

You can create a batch file to run the dos shutdown command remotely. There is also the psshutdown command within the pstools suite.

It would look something like this:

psshutdown.exe \\comp1 -o
psshutdown.exe \\comp2 -o

Which you can tie into a scheduled task. Look through the command parameters and try it out until your fairly confident the commands will do what you want them to.

James Santiago
  • 876
  • 5
  • 11