Forked from dstreefkerk/Get-MachineAccountQuotaUsers.ps1
Created
April 27, 2020 03:38
-
-
Save Dliv3/2c2c544b3b81357c04e2f55cc4843613 to your computer and use it in GitHub Desktop.
Gets a list of AD computers that were created by regular users exercising their default right to create up to 10 computer accounts in an AD domain
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$machineAccountQuotaComputers = Get-ADComputer -filter {ms-DS-CreatorSID -ne "$null"} -Properties ms-DS-CreatorSID,Created | |
foreach ($machine in $machineAccountQuotaComputers) { | |
$creator = $null | |
try { | |
$creator = [System.Security.Principal.SecurityIdentifier]::new($machine.'ms-DS-CreatorSID').Translate([System.Security.Principal.NTAccount]).Value | |
} | |
catch { | |
$creator = $machine.'ms-DS-CreatorSID' | |
} | |
New-Object psobject -Property @{ | |
Name = $machine.Name | |
DistinguishedName = $machine.DistinguishedName | |
Creator = $creator | |
Created = $machine.Created | |
} | Select-Object Name,DistinguishedName,Creator,Created | Sort-Object -Property Created | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment