The first three characters of a Salesforce ID relates to the type of object it is.
Get the firefox browser extension. It's pretty good.
If you have deleted your own Windows Server (because I am an idiot), you can resync users with Azure AD.
Prerequisite: Install
AzureAD
PowerShell moduleInstall-Module AzureAd Connect-AzureAD
- Create a new user in
Active Directory Users and Computers
- Get the GUID with
$guid = (Get-AdUser -Identity "Leondro").ObjectGUID
- Convert the GUID to Base64 with
$immutableid=[System.Convert]::ToBase64String($guid.tobytearray())
- (optional) Get a list of all your Azure AD users with
Get-AzureAdUser
- Overwrite ImmutableID with
Set-AzureAdUser -UserPrincipalName test@ramenthe.cat -ImmutableId $immutableid