This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This script must be run as Administrator to update some shortcut paths. Checking it first... | |
| $IsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole( | |
| [Security.Principal.WindowsBuiltInRole]::Administrator | |
| ) | |
| if (-not $IsAdmin) { | |
| Write-Host "Not running as Administrator. Some shortcuts may fail to update." -ForegroundColor Yellow | |
| Write-Host "" | |
| } | |
| # This is your Edge path, it should be installed here (if you're on Stable channel). |