Archive for November, 2008
how to shut down xp systems in your network and remotely
Quickly And Remotely Shut Down Computers On Your Network
Use the FOR command combined with the SHUTDOWN
command:
FOR /L %i in (1,1,254) DO shutdown \\192.168.0.%i
Windows XP will let you log-off all users in one
line:
FOR /L %i in (1,1,254) DO shutdown \\192.168.0.%i /l
Change 192.168.0 to match you own Network ID.
For
Windows Server 2003 based computers you’ll need
to refine [...]