From dcfa68476a467e284252bfd91a0c4dd2c1d208ac Mon Sep 17 00:00:00 2001 From: Gabi <182965942+GabiNun@users.noreply.github.com> Date: Tue, 17 Feb 2026 21:49:54 +0200 Subject: [PATCH] Add-WPFTweaksRevertStartMenu (#4023) * Add WPFTweaksRevertStartMenu * Create revertstartmenu.md * Update tweaks.json * Update tweaks.json * Update tweaks.json * Update revertstartmenu.md * Update tweaks.json * Update tweaks.json * Update revertstartmenu.md * Update tweaks.json --- config/tweaks.json | 35 ++++++++++++++++ .../revertstartmenu.md | 40 +++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/revertstartmenu.md diff --git a/config/tweaks.json b/config/tweaks.json index f35f09b8..b4ab3382 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -87,6 +87,41 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/widget" }, + "WPFTweaksRevertStartMenu": { + "Content": "Revert the new start menu", + "Description": "Uses vivetool to revert the the original start menu from 24h2", + "category": "z__Advanced Tweaks - CAUTION", + "panel": "1", + "InvokeScript": [ + " + Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip + + Expand-Archive ViVeTool.zip + Remove-Item ViVeTool.zip + + Start-Process 'ViVeTool\\ViVeTool.exe' -ArgumentList '/disable /id:47205210' -Wait -NoNewWindow + + Remove-Item ViVeTool -Recurse + + Write-Host 'Old start menu reverted please restart your computer to take effect' + " + ], + "UndoScript": [ + " + Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip + + Expand-Archive ViVeTool.zip + Remove-Item ViVeTool.zip + + Start-Process 'ViVeTool\\ViVeTool.exe' -ArgumentList '/enable /id:47205210' -Wait -NoNewWindow + + Remove-Item ViVeTool -Recurse + + Write-Host 'New start menu reverted please restart your computer to take effect' + " + ], + "link": "https://winutil.christitus.com/dev/tweaks/z--Advanced-Tweaks---CAUTION/revertstartmenu" + }, "WPFTweaksLaptopHibernation": { "Content": "Set Hibernation as default (good for laptops)", "Description": "Most modern laptops have connected standby enabled which drains the battery, this sets hibernation as default which will not drain the battery. See issue https://github.com/ChrisTitusTech/winutil/issues/1399", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/revertstartmenu.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/revertstartmenu.md new file mode 100644 index 00000000..3ad01d60 --- /dev/null +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/revertstartmenu.md @@ -0,0 +1,40 @@ +--- +title: "Revert the new start menu" +description: "" +--- + +```json + "WPFTweaksRevertStartMenu": { + "Content": "Revert the new start menu", + "Description": "Uses vivetool to revert the the original start menu from 24h2", + "category": "z__Advanced Tweaks - CAUTION", + "panel": "1", + "InvokeScript": [ + " + Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip + + Expand-Archive ViVeTool.zip + Remove-Item ViVeTool.zip + + ViVeTool\\ViVeTool.exe /disable /id:47205210 + + Remove-Item ViVeTool -Recurse + + Write-Host 'Old start menu reverted please restart your computer to take effect' + " + ], + "UndoScript": [ + " + Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip + + Expand-Archive ViVeTool.zip + Remove-Item ViVeTool.zip + + ViVeTool\\ViVeTool.exe /enable /id:47205210 + + Remove-Item ViVeTool -Recurse + + Write-Host 'New start menu reverted please restart your computer to take effect' + " + ], +```