Skip to content

Commit ae169f2

Browse files
committed
Update Trusted Signing URL to Microsoft Learn
Replaced the URL in the `linkLabelReadMoreTrustedSigning_LinkClicked` method to point to `Globals.ToolStings.URLMicrosoftLearnTrustedSigning` instead of `Globals.ToolStings.URLAzurePortalTrustedSigning`. Updated both the `Process.Start` call and the error message in `MessageBox.Show` to reflect the new URL.
1 parent 4d52169 commit ae169f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/SignToolGUI/Forms/MainForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2156,15 +2156,15 @@ private void linkLabelReadMoreTrustedSigning_LinkClicked(object sender, LinkLabe
21562156
{
21572157
try
21582158
{
2159-
Process.Start(Globals.ToolStings.URLAzurePortalTrustedSigning);
2159+
Process.Start(Globals.ToolStings.URLMicrosoftLearnTrustedSigning);
21602160

21612161
// Log the opening of the URL message
21622162
Message("User clicked the 'Read more' link for Trusted Signing to open the URL: '" + Globals.ToolStings.URLMicrosoftLearnTrustedSigning + "'", EventType.Information, 1052);
21632163
}
21642164
catch (Exception ex)
21652165
{
21662166
// Show an error message if the URL could not be opened
2167-
MessageBox.Show(@"Failed to open the URL '" + Globals.ToolStings.URLAzurePortalTrustedSigning + "'. Error: " + ex.Message, @"Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
2167+
MessageBox.Show(@"Failed to open the URL '" + Globals.ToolStings.URLMicrosoftLearnTrustedSigning + "'. Error: " + ex.Message, @"Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
21682168

21692169
// Log the error message
21702170
Message("Failed to open the URL: " + ex.Message, EventType.Error, 1041);

0 commit comments

Comments
 (0)