diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 106216c61a75..ec51c9c65751 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated Azure PowerShell survey URL in `Resolve-AzError` [#11507] ## Version 1.7.4 * Fixed `Get-AzTenant`/`Get-AzDefault`/`Set-AzDefault` throw NullReferenceException when not login [#10292] diff --git a/src/Accounts/Accounts/Common/AzureProfileConstants.cs b/src/Accounts/Accounts/Common/AzureProfileConstants.cs index 40071b637792..4db9a9032f14 100644 --- a/src/Accounts/Accounts/Common/AzureProfileConstants.cs +++ b/src/Accounts/Accounts/Common/AzureProfileConstants.cs @@ -22,7 +22,9 @@ public static class AzureProfileConstants public const string AzureSurveyUrl = "https://aka.ms/azpssurvey?Q_CHL=FEEDBACK"; - public static readonly string AzurePowerShellFeedbackMessage = string.Format(Resources.AzurePowerShellFeedback, AzureProfileConstants.AzureSurveyUrl); + public const string AzureSurveyUrlForError = "https://aka.ms/azpssurvey?Q_CHL=ERROR"; + + public static readonly string AzurePowerShellFeedbackMessage = string.Format(Resources.AzurePowerShellFeedback, AzureProfileConstants.AzureSurveyUrlForError); public static readonly string AzurePowerShellFeedbackQuestion = string.Format(Resources.SendFeedbackOpenLinkAutomatically, AzureProfileConstants.AzureSurveyUrl);