mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
* changed autolinks to now use frontmatter instead off #heading * updated all docs with front matter names * Update DisableLegacyRecovery.md this was the same as EnableLegacyRecovery file * made sure pages have got the corrects scripts on them * Update default.md updated the archetype default to make sure every new page had the title and description automatically on the front matter * Create BraveDebloat.md * added brave debloat link to tweaks.json * Update tweaks.json * Update tweaks.json
33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
---
|
|
title: "Remove Microsoft Edge"
|
|
description: ""
|
|
---
|
|
# Json File
|
|
```json
|
|
"WPFTweaksRemoveEdge": {
|
|
"Content": "Remove Microsoft Edge",
|
|
"Description": "Unblocks Microsoft Edge uninstaller restrictions than uses that uninstaller to remove Microsoft Edge",
|
|
"category": "z__Advanced Tweaks - CAUTION",
|
|
"panel": "1",
|
|
"Order": "a028_",
|
|
"InvokeScript": [
|
|
"Invoke-WinUtilRemoveEdge"
|
|
],
|
|
"UndoScript": [
|
|
"
|
|
Write-Host 'Installing Microsoft Edge...'
|
|
winget install Microsoft.Edge --source winget
|
|
"
|
|
],
|
|
```
|
|
# Function
|
|
```powershell
|
|
function Invoke-WinUtilRemoveEdge {
|
|
Write-Host "Unlocking The Offical Edge Uninstaller And Removing Microsoft Edge..."
|
|
|
|
$Path = (Get-ChildItem "C:\Program Files (x86)\Microsoft\Edge\Application\*\Installer\setup.exe")[0].FullName
|
|
New-Item "C:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\MicrosoftEdge.exe" -Force
|
|
Start-Process $Path -ArgumentList '--uninstall --system-level --force-uninstall --delete-profile'
|
|
}
|
|
```
|