How do I stop XP PCs from even logging into the network?

Cantroy

Lurker
Joined
May 6, 2005
Messages
495
OK, well, we've reached the point in our migration that our CIO wants to pull the floor out from those who haven't made arrangements to swap out yet. Basically, he wants to totally deny anyone with an xp pc from even logging into the network after the end of the month so that they come to us to get it fixed.

On one hand, YAY. On the other, it may upset a few folks...

Does anyone know of an easy way to do something like this in group policy or some other tool?
 
How many PCs are we talking about here? You could filter AD by OS and just disable the computer accounts.
 
WMI filtering. easy.


select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "1"

This is for Win7. Modify version to match XP
 
I have about 35-40 left... but that is a good starting place Cyron.. I will take a look at it.
 
Back
Top