For shutting down multiple computers on a network:
<code>for /L %C in (1,1,30) do shutdown -f -s -t 0 -m \\ict-%C</code>
This shuts down all Windows computers named ict-X where X is a number from 1 to 30.
For shutting down multiple computers on a network:
<code>for /L %C in (1,1,30) do shutdown -f -s -t 0 -m \\ict-%C</code>
This shuts down all Windows computers named ict-X where X is a number from 1 to 30.