ฉันเพิ่งค้นพบคุณสมบัติ "adminSDHolder" ของ Active Directory ฉันต้องการวิธีที่รวดเร็วในการระบุผู้ใช้ทั้งหมดที่จะได้รับผลกระทบจากมันนั่นคือสคริปต์ในการถ่ายโอนข้อมูลบัญชีผู้ใช้
ฉันเพิ่งค้นพบคุณสมบัติ "adminSDHolder" ของ Active Directory ฉันต้องการวิธีที่รวดเร็วในการระบุผู้ใช้ทั้งหมดที่จะได้รับผลกระทบจากมันนั่นคือสคริปต์ในการถ่ายโอนข้อมูลบัญชีผู้ใช้
คำตอบ:
คุณสามารถใช้สคริปต์ PowerShell นี้เพื่อส่งคืนผู้ใช้ที่มี adminCount มากกว่า 0 ซึ่งหมายความว่าพวกเขาได้รับผลกระทบจากคุณสมบัติ adminSDHolder คุณจะต้องติดตั้ง AD Module สำหรับ PowerShell ซึ่งมาพร้อมกับ RSAT
import-module activedirectory
get-aduser -Filter {admincount -gt 0} -Properties adminCount -ResultSetSize $null
([adsisearcher]"(AdminCount=1)").findall()
นี่คือตัวแปรของคำตอบที่ยอดเยี่ยมโดย MDMarra
Import-Module ActiveDirectory
Get-ADUser -LDAPFilter "(admincount>0)" -Properties adminCount
สิ่งนี้ใช้-LDAPFilterแทนกรอง บางคนชอบที่จะใช้ไวยากรณ์ตัวกรอง LDAP เพราะสามารถพกพาข้ามแอปพลิเคชันหลายประเภท
โปรดทราบว่าตัวกรองและ LDAPFilter มีลักษณะการทำงานที่คล้ายกันเนื่องจากตัวกรองถูกดำเนินการบนฝั่งเซิร์ฟเวอร์ เมื่อทำการค้นหาไดเรกทอรีขนาดใหญ่ให้พยายามทำการกรองโดยตรงเช่นนี้แทนที่จะใช้Where-Object
ซึ่งจะทำให้วัตถุทั้งหมดถูกดาวน์โหลดก่อนการกรอง นี้มีการอธิบายในรายละเอียดในบทความ TechNet กรองเทียบกับกรณีที่วัตถุ
-LDAPFilter
ขอขอบคุณสำหรับการกล่าวถึงและชี้แจงประโยชน์ของมัน
## Script name = Set-IheritablePermissionOnAllUsers.ps1
##
## sets the "Allow inheritable permissions from parent to propagate to this
##object"check box
# Contains DN of users
#
#$users = Get-Content C:\C:\Navdeep_DoNotDelete\variables\users.txt
Get-ADgroup -LDAPFilter “(admincount=1)” | select name
$users = Get-ADuser -LDAPFilter “(admincount=1)”
##Get-QADUser -SizeLimit 0 | Select-Object Name,@{n=’IncludeInheritablePermissions’;e={!$_.DirectoryEntry.PSBase.ObjectSecurity.AreAccessRulesProtected}} | Where {!$_.IncludeInheritablePermissions}
ForEach($user in $users)
{
# Binding the users to DS
$ou = [ADSI]("LDAP://" + $user)
$sec = $ou.psbase.objectSecurity
if ($sec.get_AreAccessRulesProtected())
{
$isProtected = $false ## allows inheritance
$preserveInheritance = $true ## preserver inhreited rules
$sec.SetAccessRuleProtection($isProtected, $preserveInheritance)
$ou.psbase.commitchanges()
Write-Host "$user is now inherting permissions";
}
else
{
Write-Host "$User Inheritable Permission already set"
}
}