我添加了一个目录角色为' Guest'的用户。我现在要删除。 Azure门户用户界面有一个"删除"选项,但它没有任何解释灰显。我已经尝试了通过"找到用户"屏幕,我已经尝试过"快速概览屏幕"我试过"管理 - >用户和群组 - >所有用户"。同样的事情,"删除"被禁用,没有任何解释。
我也尝试过Powershell。我将AzureRM和Azure模块安装到Powershell中。我访问我的Azure帐户并访问多个在线文档(即Azure GitHub文档:https://github.com/Azure/azure-docs-powershell-azuread/blob/master/Azure%20AD%20Cmdlets/MSOnline/index.md)以访问Azure AD我无法连接。
我输入Powershell:
$Msolcred = Get-credential
提示输入凭据,然后按照教程我尝试使用cmdlet:
Connect-MsolService -Credential $MsolCred
但我收到错误:
Connect-MsolService : The term 'Connect-MsolService' is not recognized as the name of a cmdlet, function, script fi
or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and
try again.
答案 0 :(得分:1)
Add-AzureRmAccount -SubscriptionName 'SUBNAME'
Get-AzureRmADUser #Look up the user GUID
Remove-AzureRmADUser -UPNOrObjectId 'USER GUID'
要安装此模块,您应该运行“Install-Module AzureRM”(这需要一些时间)