https://stackoverflow.com/questions/40370571/how-do-i-add-a-microsoft-account-to-azure-active-directory
https://knowledge-base.havit.eu/2018/03/26/managing-your-microsoft-account-owned-azure-subscription-with-your-organizational-account-aad/
You must log on to comment.
verasearch3 said
Almost working, but not quite:
> Install-Module AzureAD
> Import-Module AzureAD
> Connect-AzureAD
New-AzureADMSInvitation -InvitedUserEmailAddress '[email protected]' -InviteRedirectUrl 'https://portal.azure.com' -SendInvitationMessage $True -InvitedUserType 'Member'
verasearch3 said
You can convert guests to members using:
Get-AzureADUser -SearchString [email protected] | Set-AzureADUser -UserType member
verasearch3 said
http://himalpatel.blogspot.com/2018/02/converting-guest-user-to-member-in.html#!/2018/02/converting-guest-user-to-member-in.html
verasearch3 said
to switch tenant:
Select-AzureRmSubscription -TenantId <ID of Azure Tenant>