Skip to content

Instantly share code, notes, and snippets.

@zaneGittins
Created September 17, 2019 21:24
Show Gist options
  • Save zaneGittins/1099654b54879bf486299e19d85ead3a to your computer and use it in GitHub Desktop.
Save zaneGittins/1099654b54879bf486299e19d85ead3a to your computer and use it in GitHub Desktop.
function Get-ADUserBySID {
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)][string]$SIDEnding
)
$SearchTerm = "*-" + $SIDEnding
Get-ADUser -Filter * | Select-Object -Property SID,Name | Where-Object -Property SID -like $SearchTerm
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment