mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 06:50:09 +00:00
* Updated winutil website add git ignore to not upload unnecessarily file. i have also updated microwin docs and added a copyright info to the footer * Update _index.md * Update KnownIssues.md * Update links update all the links for github to the corresponding pages. i have kept the original links aswell but commented out * update hugo workflow to use version 0.147.0 * Update en.yaml * update hugo toml to get rid off powered by * Update docs.yaml * Update KnownIssues.md * Update KnownIssues.md * Update KnownIssues.md * Update compatibility note for MicroWin and Ventoy * removed quad 9 dns * fixed all the incorrect code block in markdown file * Replace hardcoded page lists with auto-discovery shortcode Created a new shortcode at docs/layouts/shortcodes/autolinks.html. This enables auto-discovery when creating new Markdown files, streamlining the workflow for future documentation updates. * updated os requirements
31 lines
995 B
Markdown
31 lines
995 B
Markdown
# Remove Microsoft Edge
|
|
|
|
# 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'
|
|
}
|
|
```
|