Posts Tagged ‘batch’

A Quick Shutdown Command

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.

Read the rest of this entry »

Remove Network Printers from Users Before they Log On

I had a little trouble with an HP Printer driver that was causing the Vista PCs to hang at logon. Without going into the specifics of the problem (which comes down to poor HP drivers), I needed a way to ensure that the driver wouldn’t be active the next time that a user logged onto [...]

Read the rest of this entry »