mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-03 19:53:50 -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.Add_Click({
|
||||
param($sender, $args)
|
||||
[System.Diagnostics.Process]::Start($sender.NavigateUri.AbsoluteUri)
|
||||
Start-Process $sender.NavigateUri.AbsoluteUri
|
||||
})
|
||||
$hyperlink.Add_MouseEnter({
|
||||
param($sender, $args)
|
||||
|
Reference in New Issue
Block a user