Jump to content

Recommended Posts

Posted

I'm looking for a way to disable computers on our network that are still Windows XP after it has gone end of life. When 2000 went we disabled the accounts but we still had some teachers plugging in and using cached credentials, anybody got a way of disabling them on the network entirely?

 

Hales

Posted
Disable the XP computer accounts in Active Directory, or delete them completely (not recommended), but at least they can't authenticate with the domain.
Posted (edited)

You could do something in powershell. Something like this

 

Get-ADComputer -Filter {OperatingSystem -Like "Windows XP*"} -Property * | Set-ADComputer -Enabled $false

 

To delete

 

Get-ADComputer -Filter {OperatingSystem -Like "Windows XP*"} -Property * | Remove-ADComputer

 

 

I have not tested this but it should work.

 

If you enable the Active Directory recycle bin you can restore deleted computers really easy if you need to.

Edited by FN-GM
Posted
You can run a query to show computers where os is 5.1 then disable the resultant list of accounts.

 

Ben

 

This would be an easier way, forgot you could do that!

Posted
Except, if you actually read the blog post, they're only providing antimalware and engine updates for software running on XP, so in effect they're updating Microsoft Security Essentials and nothing else. Support for XP itself is still ending as planned on 8th April.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...