I'm trying to get already created Password Credentials for Azure AD app using the Get-AzureADApplicationPasswordCredential cmdlet. The cmdlet is executing successfully, however the value field is empty :( According to the docs (https://docs.microsoft.com/en-us/powershell/module/azuread/get-azureadapplicationpasswordcredential?view=azureadps-2.0) it should return the key.
Did somebody managed to get this cmdlet working ?
Value
should be empty, it is normal. There should be a mistake in the official doc, see i.stack.imgur.com/L9hsq.png , in the example, it uses theNew
, notGet
.If you tryNew
, it appears like the doc. - Joy Wang-MSFT