mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-17 02:10:36 -06:00
fix opening link
- switched method to open hyperlinks old: [System.Diagnostics.Process]::Start new: Start-Process
This commit is contained in:
parent
f7263be9db
commit
e1dd643275
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user