mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 14:48:31 +00:00
22 lines
594 B
Markdown
22 lines
594 B
Markdown
---
|
|
title: "Remove Microsoft Edge"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1449}
|
|
"WPFTweaksRemoveEdge": {
|
|
"Content": "Remove Microsoft Edge",
|
|
"Description": "Unblocks Microsoft Edge uninstaller restrictions then uses that uninstaller to remove Microsoft Edge.",
|
|
"category": "z__Advanced Tweaks - CAUTION",
|
|
"panel": "1",
|
|
"InvokeScript": [
|
|
"Invoke-WinUtilRemoveEdge"
|
|
],
|
|
"UndoScript": [
|
|
"
|
|
Write-Host 'Installing Microsoft Edge...'
|
|
winget install Microsoft.Edge --source winget
|
|
"
|
|
],
|
|
```
|