mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
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
This commit is contained in:
@@ -87,6 +87,41 @@
|
|||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/widget"
|
"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": {
|
"WPFTweaksLaptopHibernation": {
|
||||||
"Content": "Set Hibernation as default (good for laptops)",
|
"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",
|
"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",
|
||||||
|
|||||||
@@ -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'
|
||||||
|
"
|
||||||
|
],
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user