5 lines
185 B
PowerShell
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)
|