想要在 Azure 门户中创建新的客户端密钥时添加显示名称

问题描述 投票:0回答:1
我想添加显示名称,同时通过 powershell 创建新的客户端密钥。是否可以? 我尝试了太多的方法,但我无法在创建时添加名称,因为这只能通过 Mg-Graph 来完成。

我尝试使用这些命令 Get-AzureADApplication、Get-AzureADApplicationPasswordCredential。

azure azureclicredential
1个回答
0
投票
您可以使用以下 Microsoft Graph PowerShell 命令创建具有显示名称的新客户端密钥:

Connect-MgGraph -Scopes "Application.ReadWrite.All" Import-Module Microsoft.Graph.Applications $params = @{ passwordCredential = @{ displayName = "Secret name" } } $applicationId = "appObjID" Add-MgApplicationPassword -ApplicationId $applicationId -BodyParameter $params

回复:

enter image description here

当我在 Portal 中检查相同内容时,秘密创建成功,显示名称如下:

enter image description here

要使用 Azure AD PowerShell 模块创建具有显示名称的客户端密钥,请使用以下命令:

Connect-AzureAD New-AzureADApplicationPasswordCredential -ObjectId "appObjID" -CustomKeyIdentifier "Secret Name"

回复:

enter image description here

传送门:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.