mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-04 04:03:52 -05:00
fix opening link
- switched method to open hyperlinks old: [System.Diagnostics.Process]::Start new: Start-Process
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user