Skip to content

Instantly share code, notes, and snippets.

View andersonsalas's full-sized avatar

Anderson Salas andersonsalas

  • Venezuela
  • 14:07 (UTC -04:00)
View GitHub Profile
@intenzemotion
intenzemotion / hide-edge-rounded-corners.ps1
Last active August 12, 2026 18:19
Hide Edge v149 forced rounded corners. Additionally hide red dot on profile icon too.
# 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).