mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-17 10:17:44 -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.Foreground = $foregroundColor
|
||||||
$hyperlink.Add_Click({
|
$hyperlink.Add_Click({
|
||||||
param($sender, $args)
|
param($sender, $args)
|
||||||
[System.Diagnostics.Process]::Start($sender.NavigateUri.AbsoluteUri)
|
Start-Process $sender.NavigateUri.AbsoluteUri
|
||||||
})
|
})
|
||||||
$hyperlink.Add_MouseEnter({
|
$hyperlink.Add_MouseEnter({
|
||||||
param($sender, $args)
|
param($sender, $args)
|
||||||
|
Loading…
Reference in New Issue
Block a user