0

我正在使用 Set-MsolServicePrincipal 更新 TrustedForDelegation 标志:

http://msdn.microsoft.com/en-us/library/azure/dn194110.aspx

我尝试了几个不同的命令:

Set-MsolServicePrincipal -AppPrincipalId $AppId -TrustedForDelegation true

其中 $AppId 是有效的 App Principal Id。但是,无论我使用什么“TrustedForDelegation”标志组合,控制台都会抛出以下错误:

Set-MsolServicePrincipal:找不到与参数名称“TrustedForDelegation”匹配的参数。在 line:1 char:49 + Set-MsolServicePrincipal -AppPrincipalId $AppId -TrustedForDelegation true + ~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidArgument: (:) [Set -MsolServicePrincipal], ParameterBindingException + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.Online.Administ ration.Automation.SetServicePrincipal

用于更新“TrustedForDelegation”的正确标志是什么

提前致谢!

4

1 回答 1

1

根据您链接到的文档和错误消息,AAD PowerShell cmdlet 中没有 TrustedForDelegation 参数。

(注意:虽然此参数不存在,但您通常希望设置 PowerShell 布尔值$true,而不是true。)

于 2014-05-27T19:35:03.707 回答