Skip to content

Commit dcfa684

Browse files
authored
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
1 parent 60d31a1 commit dcfa684

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed

config/tweaks.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,41 @@
8787
],
8888
"link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/widget"
8989
},
90+
"WPFTweaksRevertStartMenu": {
91+
"Content": "Revert the new start menu",
92+
"Description": "Uses vivetool to revert the the original start menu from 24h2",
93+
"category": "z__Advanced Tweaks - CAUTION",
94+
"panel": "1",
95+
"InvokeScript": [
96+
"
97+
Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip
98+
99+
Expand-Archive ViVeTool.zip
100+
Remove-Item ViVeTool.zip
101+
102+
Start-Process 'ViVeTool\\ViVeTool.exe' -ArgumentList '/disable /id:47205210' -Wait -NoNewWindow
103+
104+
Remove-Item ViVeTool -Recurse
105+
106+
Write-Host 'Old start menu reverted please restart your computer to take effect'
107+
"
108+
],
109+
"UndoScript": [
110+
"
111+
Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip
112+
113+
Expand-Archive ViVeTool.zip
114+
Remove-Item ViVeTool.zip
115+
116+
Start-Process 'ViVeTool\\ViVeTool.exe' -ArgumentList '/enable /id:47205210' -Wait -NoNewWindow
117+
118+
Remove-Item ViVeTool -Recurse
119+
120+
Write-Host 'New start menu reverted please restart your computer to take effect'
121+
"
122+
],
123+
"link": "https://winutil.christitus.com/dev/tweaks/z--Advanced-Tweaks---CAUTION/revertstartmenu"
124+
},
90125
"WPFTweaksLaptopHibernation": {
91126
"Content": "Set Hibernation as default (good for laptops)",
92127
"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",
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: "Revert the new start menu"
3+
description: ""
4+
---
5+
6+
```json
7+
"WPFTweaksRevertStartMenu": {
8+
"Content": "Revert the new start menu",
9+
"Description": "Uses vivetool to revert the the original start menu from 24h2",
10+
"category": "z__Advanced Tweaks - CAUTION",
11+
"panel": "1",
12+
"InvokeScript": [
13+
"
14+
Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip
15+
16+
Expand-Archive ViVeTool.zip
17+
Remove-Item ViVeTool.zip
18+
19+
ViVeTool\\ViVeTool.exe /disable /id:47205210
20+
21+
Remove-Item ViVeTool -Recurse
22+
23+
Write-Host 'Old start menu reverted please restart your computer to take effect'
24+
"
25+
],
26+
"UndoScript": [
27+
"
28+
Invoke-WebRequest https://github.com/thebookisclosed/ViVe/releases/download/v0.3.4/ViVeTool-v0.3.4-IntelAmd.zip -OutFile ViVeTool.zip
29+
30+
Expand-Archive ViVeTool.zip
31+
Remove-Item ViVeTool.zip
32+
33+
ViVeTool\\ViVeTool.exe /enable /id:47205210
34+
35+
Remove-Item ViVeTool -Recurse
36+
37+
Write-Host 'New start menu reverted please restart your computer to take effect'
38+
"
39+
],
40+
```

0 commit comments

Comments
 (0)