fix opening link

- switched method to open hyperlinks
old: [System.Diagnostics.Process]::Start
new: Start-Process
This commit is contained in:
MyDrift 2024-06-20 21:54:16 +02:00
parent f7263be9db
commit e1dd643275

View File

@ -205,7 +205,7 @@ $cttLogoPath = @"
$hyperlink.Foreground = $foregroundColor
$hyperlink.Add_Click({
param($sender, $args)
[System.Diagnostics.Process]::Start($sender.NavigateUri.AbsoluteUri)
Start-Process $sender.NavigateUri.AbsoluteUri
})
$hyperlink.Add_MouseEnter({
param($sender, $args)