Files
Scripting/Powershell/PowerShell-Office365Admin/MSOnline/ImmutableIDToADGUID.ps1
DistractADD cfddd4fad2 Added Files
2021-07-06 13:16:46 +10:00

5 lines
185 B
PowerShell

# Convert 365 ImmutableID to AD GUID
$immutableID = Read-Host -Prompt 'Enter ImmutableID to convert to Active Directory GUID'
[GUID][System.Convert]::FromBase64String($immutableID)