Djentacodic

Get-AADUserId.ps1

Apr 12th, 2024
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.74 KB | Source Code | 0 0
  1. [CmdletBinding()]
  2. Param(
  3.     [Parameter(Mandatory, Position = 0)]
  4.     [ValidatePattern('^(?(")(".+?(?<!\\)"@)|(([0-9a-z]((\.(?!\.))|[-!#\$%&''\*\+/=\?\^`\{\}\|~\w])*)(?<=[0-9a-z])@))(?(\[)(\[(\d{1,3}\.){3}\d{1,3}\])|(([0-9a-z][-\w]*[0-9a-z]*\.)+[a-z0-9][\-a-z0-9]{0,22}[a-z0-9]))$')]
  5.     [String[]]$UserPrincipalName,
  6.     [Parameter(Mandatory, Position = 1)]
  7.     [ValidateScript({Test-Path -Path $_})]
  8.     [String]$FilePath
  9. )
  10. $UserPrincipalName | ForEach-Object {
  11.     try {
  12.         [String]$ID = Get-MgBetaUser -UserId $_ -ErrorAction Stop -ErrorVariable ErrVar | Select-Object -ExpandProperty Id
  13.         "$ID" | Out-File -PSPath $FilePath -Encoding utf8 -Append
  14.         return "$_","$ID" | Format-Table
  15.     }
  16.     catch {
  17.         Write-Error $ErrVar
  18.     }
  19. }
Add Comment
Please, Sign In to add comment