Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

Commit 382a32c

Browse files
nixxoqIgorTHh1337
andcommitted
0.2.0
Co-authored-by: pashtetusss777 <pashtetusss777@users.noreply.github.com> and IgorTHh1337 <IgorTHh1337@users.noreply.github.com>
1 parent 2458f7f commit 382a32c

33 files changed

+10460
-65
lines changed

.vscode/extensions.json

100755100644
File mode changed.

.vscode/settings.json

100755100644
File mode changed.

readme.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,57 @@
1212
- Enjoy!
1313

1414
## Changelog
15+
- 0.2.0 - Secondary release
16+
- added features:
17+
- Now playbook can delete these packages:
18+
19+
(You can remove these packages if you want to, and they won't be installed from Windows Update):
20+
- Skype
21+
- Teams
22+
- Media Player
23+
- OneDrive
24+
- Xbox Legacy Companion
25+
- Cortana
26+
- Alarms & Clock
27+
- Paint 3D
28+
- Films & TV
29+
- Spotify
30+
- Disney+
31+
- Tips
32+
- Microsoft Family
33+
- Mixed Reality Portal
34+
- DevHome
35+
- Bing Weather
36+
- Bing News
37+
- Outlook (new)
38+
- Get Help
39+
- 3D Viewer
40+
- Office Hub (Get Office)
41+
- Solitaire Collection
42+
- Sticky Notes
43+
- People
44+
- OneNote
45+
- Power Automate Desktop
46+
- Snipping Tool
47+
- Windows Wallet
48+
- Windows Camera
49+
- To-Dos
50+
- Feedback Hub
51+
- Maps
52+
- Sound Recorder
53+
- Music Player
54+
- Your Phone
55+
56+
- Added finalizing steps of the playbook
57+
- Option to restore old search icon
58+
- Disabling automatic store updates
59+
- Disabling automatic updates in Windows Update and pause it until 2077
60+
- DirectPlay and LegacyComponents components are now enabled by default
61+
- Remote Differential Compression is disabled by default
62+
- Optionally, you can uninstall Microsoft Edge and Onedrive in the Features page
63+
- and more
64+
65+
1566
- 0.1.0 - Initial alpha release
1667
- added features:
1768
- Disable GameBar (optional)

source/Configuration/main.yml

100755100644
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ actions:
1616
- !task: { path: 'rebuild\optional\task.yml' }
1717
- !task: { path: 'rebuild\other\task.yml' }
1818
- !task: { path: 'rebuild\telemetry\task.yml' }
19+
- !task: { path: 'rebuild\system\task.yml' }
1920

21+
- !task: { path: 'rebuild\other\tasks\finalizing.yml' }
2022
- !writeStatus: { status: "Done" }

source/Configuration/rebuild/explorer/task.yml

100755100644
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ actions:
44

55
- !task: { path: 'rebuild\explorer\tasks\search.yml' }
66
- !task: { path: 'rebuild\explorer\tasks\start.yml' }
7-
- !task: { path: 'rebuild\explorer\tasks\shell.yml' }
7+
- !task: { path: 'rebuild\explorer\tasks\shell.yml' }
8+
- !task: { path: 'rebuild\explorer\tasks\desktop.yml' }
9+
- !task: { path: 'rebuild\explorer\tasks\taskbar.yml' }

source/Configuration/rebuild/other/tasks/desktop.yml renamed to source/Configuration/rebuild/explorer/tasks/desktop.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,10 @@ actions:
1313
value: "PeopleBand"
1414
data: "0"
1515
type: REG_DWORD
16+
17+
# Disable Wallpaper Compression
18+
- !registryValue:
19+
path: 'HKCU\Control Panel\Desktop'
20+
value: 'JPEGImportQuality'
21+
data: '100'
22+
type: REG_DWORD

source/Configuration/rebuild/explorer/tasks/shell.yml

Lines changed: 121 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ actions:
3636
value: "NoResolveSearch"
3737
data: "1"
3838
type: REG_DWORD
39-
39+
4040
# Disallow Online Tips
4141
- !registryValue:
4242
path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer'
@@ -58,6 +58,13 @@ actions:
5858
data: "1"
5959
type: REG_DWORD
6060

61+
# Show file extensions
62+
- !registryValue:
63+
path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
64+
value: "HideFileExt"
65+
data: "0"
66+
type: REG_DWORD
67+
6168
# Remove 'shortcut' text from shortcuts
6269
- !registryValue:
6370
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates'
@@ -71,3 +78,116 @@ actions:
7178
value: "FolderType"
7279
data: "NotSpecified"
7380
type: REG_SZ
81+
82+
# Hide Folders from This PC
83+
- !run: {
84+
exe: "reg",
85+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
86+
option: "hidefoldersthispc",
87+
runas: "currentUserElevated",
88+
}
89+
- !run: {
90+
exe: "reg",
91+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
92+
option: "hidefoldersthispc",
93+
runas: "currentUserElevated",
94+
}
95+
- !run: {
96+
exe: "reg",
97+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{a0c69a99-21c8-4671-8703-7934162fcf1d}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
98+
option: "hidefoldersthispc",
99+
runas: "currentUserElevated",
100+
}
101+
- !run: {
102+
exe: "reg",
103+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{a0c69a99-21c8-4671-8703-7934162fcf1d}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
104+
option: "hidefoldersthispc",
105+
runas: "currentUserElevated",
106+
}
107+
- !run: {
108+
exe: "reg",
109+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
110+
option: "hidefoldersthispc",
111+
runas: "currentUserElevated",
112+
}
113+
- !run: {
114+
exe: "reg",
115+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
116+
option: "hidefoldersthispc",
117+
runas: "currentUserElevated",
118+
}
119+
- !run: {
120+
exe: "reg",
121+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
122+
option: "hidefoldersthispc",
123+
runas: "currentUserElevated",
124+
}
125+
- !run: {
126+
exe: "reg",
127+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
128+
option: "hidefoldersthispc",
129+
runas: "currentUserElevated",
130+
}
131+
- !run: {
132+
exe: "reg",
133+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{35286a68-3c57-41a1-bbb1-0eae73d76c95}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
134+
option: "hidefoldersthispc",
135+
runas: "currentUserElevated",
136+
}
137+
- !run: {
138+
exe: "reg",
139+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{35286a68-3c57-41a1-bbb1-0eae73d76c95}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
140+
option: "hidefoldersthispc",
141+
runas: "currentUserElevated",
142+
}
143+
- !run: {
144+
exe: "reg",
145+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
146+
option: "hidefoldersthispc",
147+
runas: "currentUserElevated",
148+
}
149+
- !run: {
150+
exe: "reg",
151+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
152+
option: "hidefoldersthispc",
153+
runas: "currentUserElevated",
154+
}
155+
- !run: {
156+
exe: "reg",
157+
args: 'add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
158+
option: "hidefoldersthispc",
159+
runas: "currentUserElevated",
160+
}
161+
- !run: {
162+
exe: "reg",
163+
args: 'add HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag /v ThisPCPolicy /t REG_SZ /d "Hide" /f',
164+
option: "hidefoldersthispc",
165+
runas: "currentUserElevated",
166+
}
167+
168+
# Disable Windows Spotlight
169+
- !registryValue:
170+
path: 'HKCU\SOFTWARE\Policies\Microsoft\Windows\CloudContent'
171+
value: "DisableWindowsSpotlightFeatures"
172+
data: "1"
173+
type: REG_DWORD
174+
- !registryValue:
175+
path: 'HKCU\SOFTWARE\Policies\Microsoft\Windows\CloudContent'
176+
value: "DisableWindowsSpotlightWindowsWelcomeExperience"
177+
data: "1"
178+
type: REG_DWORD
179+
- !registryValue:
180+
path: 'HKCU\SOFTWARE\Policies\Microsoft\Windows\CloudContent'
181+
value: "DisableWindowsSpotlightOnActionCenter"
182+
data: "1"
183+
type: REG_DWORD
184+
- !registryValue:
185+
path: 'HKCU\SOFTWARE\Policies\Microsoft\Windows\CloudContent'
186+
value: "DisableWindowsSpotlightOnSettings"
187+
data: "1"
188+
type: REG_DWORD
189+
- !registryValue:
190+
path: 'HKCU\SOFTWARE\Policies\Microsoft\Windows\CloudContent'
191+
value: "DisableThirdPartySuggestions"
192+
data: "1"
193+
type: REG_DWORD
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
title: Rebuild OS - Explorer Tweaks
2+
actions:
3+
# Disable News and Interests
4+
- !registryValue:
5+
path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds'
6+
value: "EnableFeeds"
7+
data: "0"
8+
type: REG_DWORD
9+
- !registryValue:
10+
path: 'HKLM\SOFTWARE\Policies\Microsoft\Dsh'
11+
value: "AllowNewsAndInterests"
12+
data: "0"
13+
type: REG_DWORD
14+
15+
# Hide 'Meet now' from taskbar
16+
- !registryValue:
17+
path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer'
18+
value: "HideSCAMeetNow"
19+
data: "1"
20+
type: REG_DWORD

source/Configuration/rebuild/optional/task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ actions:
55
- !task: { path: 'rebuild\optional\tasks\reservedstorage.yml' }
66
- !task: { path: 'rebuild\optional\tasks\backgroundapps.yml' }
77
- !task: { path: 'rebuild\optional\tasks\gamebar.yml' }
8-
- !task: { path: 'rebuild\optional\tasks\batch.yml' }
8+
- !task: { path: 'rebuild\optional\tasks\contextmenu.yml' }
99
- !task: { path: 'rebuild\optional\tasks\desktop.yml' }
1010
- !task: { path: 'rebuild\optional\tasks\autorun.yml' }
1111
- !task: { path: 'rebuild\optional\tasks\windowserrorreporting.yml' }

source/Configuration/rebuild/optional/tasks/batch.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)