Remove-AzureADApplicationPasswordCredential
從應用程式移除密碼認證。
語法
Remove-AzureADApplicationPasswordCredential
-ObjectId <String>
-KeyId <String>
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[<CommonParameters>]
Description
Remove-AzureADApplicationPasswordCredential Cmdlet 會從 Azure Active Directory (AD) 中的應用程式移除密碼認證。
範例
範例 1:移除應用程式密碼認證
PS C:\> $AppID = (Get-AzureADApplication -Top 1).objectId
PS C:\> $KeyIDs = Get-AzureADApplicationPasswordCredential -ObjectId $AppId
PS C:\> Remove-AzureADApplicationPasswordCredential -ObjectId $AppId -KeyId $KeyIds[0].KeyId
第一個命令會使用 Get-AzureADApplication (./Get-AzureADApplication.md) Cmdlet 取得應用程式的標識符,然後將它儲存在 $AppID 變數中。
第二個命令會使用 Get-AzureADApplicationPasswordCredential (./ Get-AzureADApplicationPasswordCredential.md) Cmdlet,取得$AppID所識別之應用程式的密碼認證。 命令會將它儲存在 $KeyId 變數中。
最後一個命令會移除$AppID所識別應用程式的應用程式密碼認證。
參數
-InformationAction
指定此 Cmdlet 如何回應資訊事件。
此參數可接受的值為:
- 繼續
- 忽略
- 詢問
- SilentlyContinue
- Stop
- 暫止
類型: | ActionPreference |
別名: | infa |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-InformationVariable
指定資訊變數。
類型: | String |
別名: | iv |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-KeyId
@{Text=}
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-ObjectId
指定 Azure AD 中應用程式的識別碼。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |