91-How to search Active Directory for Disabled Accounts using PowerShell

preview_player
Показать описание
In this video i want to show all of you bout : How to search Active Directory for Disabled Accounts using PowerShell

Content Flows :
1-How to install and configure windows server 2016
2-How to Install and configure active directory domain controllers
3-How to Manage active directory domain services.
4-How to Manage Objects Run Active directory domain services.
5-How to Integrate DNS With active directory.

►Background Into Music Provided by:
Andrew Applepie
►If has any issue with Background Into Music, Please command I will remove it

►Please help like , command and subscribe on my channel
=================================================

How to search Active Directory for Disabled Accounts using PowerShell
=====================================================
Get-ADUser -Filter {Enabled -eq $false} | FT samAccountName
----------------------------------------------------------------------------------------------------------
Get-ADUser -LDAPFilter {(useraccountcontrol:1.2.840.113556.1.4.803:=2)} -Properties whenChanged | Where-Object {$_.whenChanged -gt (Get-Date).AddDays(-30)} | Select-Object Name, whenChanged
Рекомендации по теме