In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/03 Report--
1. Query the default password policy in AD
Get-ADDefaultDomainPasswordPolicy
In the query AD, those users are selected at the top of the "password never expires"
Get-ADUser-Filter 'PasswordNeverExpires-eq $true'-Server DCHostname | select name
If you only query something under OU, you can add a qualification:
-searchbase 'OU=test,DC=Youdomain,DC=COM'
3. Query locked users in AD
Get-aduser-filter-properties | where {$_ .lockedout} | ft name,lockedout
4. In the query AD, the member is an empty AD group (for users)
Get-ADGroup-Filter *-Properties Members | where {- not $_ .Members} | select Name
5. Unlock locked users
Unlock-ADAccount-Identity xxxxxx
6. Query whether a user is locked
Get-aduser test-properties * | ft name,lockedout
7. Fix trust corruption between client and domain
Enter cmdlet:
Test-ComputerSecureChannel-Server "controller.domain.com"
Query all OU accounts that have not been logged in within one month:
PS C:\ Users\ administrator > Get-ADuser-searchbase 'DC=rightdo,DC=net'-filter-Properties | Select-Object Name,SID, Created,PasswordLastSet,@ {n = "lastLogonDate"; e = {[datetime]:: FromFileTime ($.lastLogonTimestamp)}} | where {$.lastlogondate-lt (get-date). AddDays (- 30)}
Query the creation time of all accounts in OU\ SID\ Last password modification time\ Last login time
Get-ADuser-searchbase 'DC=rightdo,DC=net'-filter-Properties | Select-Object Name,SID, Created,PasswordLastSet,@ {n = "lastLogonDate"; e = {[datetime]:: FromFileTime ($_ .lastLogonTimestamp)}}
Export the csv file first
Get-ADUser-Filter-Properties | where {$_ .UserPrincipalName-ne $null} | Select-Object SamAccountName,EmployeeID,EmployeeType,description | Export-Csv-Encoding Utf8-NoTypeInformation c:\ aduserinfo.csv
Update the exported user information after modification
Import-Csv-Path c:\ aduserinfo.csv | foreach {Set-ADUser-Identity $.SamAccountName-EmployeeID $.EmployeeID
-Replace @ {EmployeeType = $.EmployeeType; description = $.description}}
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.