1

我正在尝试使用 Azure AD PowerShell 生成邀请链接。我正在使用 New-AzureADMSInvitation 方法(https://docs.microsoft.com/en-us/powershell/module/azuread/new-azureadmsinvitation?view=azureadps-2.0)。

我在云外壳中运行它并收到以下错误:

PS Azure:\> New-AzureADMSInvitation

cmdlet New-AzureADMSInvitation at command pipeline position 1
Supply values for the following parameters:
InvitedUserEmailAddress: "**@**.com"
InviteRedirectUrl: "**.com"
New-AzureADMSInvitation : Object reference not set to an instance of an object.
At line:1 char:1
+ New-AzureADMSInvitation
+ ~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [New-AzureADMSInvitation], NullReferenceException
    + FullyQualifiedErrorId : System.NullReferenceException,Microsoft.Open.MSGraphV10.PowerShell.NewAzureADMSInvitation

我试过重新启动 shell,不包括输入中的引号,但没有运气。任何人都能够解决这个问题?

4

1 回答 1

1

似乎我们无法在 Cloud Shell (Powershell) 中使用此命令。我还建议您可以在此反馈论坛中发布您的想法。Azure 团队将对其进行审核。

此外,您可以尝试在本地计算机上使用此 powershell 命令。确保您使用了AAD Powershell 2.0 或更高版本

只需尝试输入以下 powershell 脚本:

New-AzureADMSInvitation -InvitedUserEmailAddress <guest user's EmailAddress> -SendInvitationMessage $True -InviteRedirectUrl "http://myapps.onmicrosoft.com"

希望这可以帮助!

于 2018-03-15T02:53:46.350 回答