我正在使用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'。 在线:1字符:49 + Set-MsolServicePrincipal -AppPrincipalId $ AppId -TrustedForDelegation true + ~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:InvalidArgument:(:) [Set-MsolServicePrincipal], ParameterBindingException + FullyQualifiedErrorId:NamedParameterNotFound,Microsoft.Online.Administ ration.Automation.SetServicePrincipal
用于更新" TrustedForDelegation"
的正确标志是什么?提前致谢!
答案 0 :(得分:1)
根据您链接到的文档和错误消息,AAD PowerShell cmdlet中没有TrustedForDelegation参数。
(注意:虽然此参数不存在,但您通常希望使用$true
设置PowerShell布尔值,而不是true
。)