-3

Imagine you have network with about 70 computers which work with none-administrator users. What I need is to shutdown whole network or group of computers at once from one computer. I actually found (!NOT TESTED! don't know if it really works or not) some paid software called Remote Computer Manager after research. The questions are

  1. Is there any free/opensource software that can do what I want to do even to none-admin users without any client software (using windows inbuilt functionality etc..)?
  2. WHat do you think about Remote Computer Manager? Is it reliable?

Please tell me both clientless and with client, free solutions that can do this job.

All pc's are using windows XP

0

1 Answer 1

6

Since you are networked, you could make a batch script with all the computer names to run the built in Windows command.

shutdown -m \\COMPUTERNAME -f -t 00

That sends the shutdown command with the following switches:

  • -m requires the "\IDENTIFIER", so that could be IP or computer name
  • Add -r if you want reboot, -s for shutdown
  • -f Forces running applications to close without prompting the user
  • -t is a definition of timing in seconds. so 00 means now.

I just tested it in my small network of 5 and it worked on them all. (Edit: We have XP and 7, so I feel confident to say it'll work on any DOS box since XP).

7
  • Keep in mind, other network PC's is running under restricted user, not admin. and I got on some other network (not the one that I'm talking about) Access denied error. And please give me solution for all computers of, say 192.168.40.xx network. Not for one
    – user978733
    Commented Dec 4, 2012 at 16:01
  • read my comment, and make edits for batch shutdowning not only 1 pc
    – user978733
    Commented Dec 4, 2012 at 16:15
  • @user978733 Like I said, incorporate it into a batch script. Something like for /L %%x in (1, 1, 255) do shutdown -m 192.168.40.%%x -s -f -t 00 You may need to do some of your own footwork. Assuming you have authority to act on the machines, you may need to go enable net shutdown on the boxes (which may require you to have a domain account with the privileges. If you are in the place with this need and 70pcs, you should have that anyway. Another option is to use PsShutdown and provide credentials to do so.
    – nerdwaller
    Commented Dec 4, 2012 at 16:22
  • Where's the name/IP address list? Commented Dec 4, 2012 at 16:24
  • It loops in (1, 1, 255) and is populated in the %%x at the end of the 192.168.40.%%x. The loop in batch is (start, step, end) - so that example does 1-255. You can see more here.
    – nerdwaller
    Commented Dec 4, 2012 at 16:34

Not the answer you're looking for? Browse other questions tagged .