Compare commits

...

3 Commits

Author SHA1 Message Date
Fierelier ee51e96083 Update docs 2023-03-05 17:06:51 +01:00
Fierelier a53f99dcae Add mod: disable third party apps 2023-03-05 17:06:28 +01:00
Fierelier ab5f5ce037 Remove mod: disable silent app install 2023-03-05 17:06:09 +01:00
8 changed files with 12 additions and 10 deletions

View File

@ -141,8 +141,8 @@ Mods that require System rights<br>
<tr><td>[hell]\<b>disable onedrive auto-install</b></td><td>performance, quality</td><td>Stops OneDrive from installing itself onto each user&#x27;s account.</td></tr>
<tr><td>[hell]\<b>disable security health service</b></td><td>performance</td><td>Stops computer from checking if Windows Defender is alive.</td></tr>
<tr><td>[hell]\<b>disable settings app header</b></td><td>quality</td><td>Disables the ginormous header in the Settings app that shows your user name, picture and tells you to do stuff with Microsoft services.</td></tr>
<tr><td>[hell]\<b>disable silent app install</b></td><td>performance, quality</td><td>Stops Windows from downloading random shitty apps.</td></tr>
<tr><td>[hell]\<b>disable start menu suggestions</b></td><td>quality</td><td>Removes the &quot;Suggested&quot; category in the start menu.</td></tr>
<tr><td>[hell]\<b>disable third party apps</b></td><td>performance</td><td>Disables a bunch of interfaces relating to extra apps being downloaded at random.</td></tr>
<tr><td>[hell]\<b>disable tips tricks and suggestions</b></td><td>quality</td><td>Disable random push notifications telling you to use Microsoft services.</td></tr>
<tr><td>[hell]\<b>disable transparency</b></td><td>performance</td><td>Remove transparency effects from the start menu, taskbar and certain apps.</td></tr>
<tr><td>[hell]\<b>disable update check schedule</b></td><td>performance, telemetry</td><td>Keep Windows from checking for updates.</td></tr>

View File

@ -141,8 +141,8 @@ Mods that require System rights<br>
<tr><td>[hell]\<b>disable onedrive auto-install</b></td><td>performance, quality</td><td>Stops OneDrive from installing itself onto each user&#x27;s account.</td></tr>
<tr><td>[hell]\<b>disable security health service</b></td><td>performance</td><td>Stops computer from checking if Windows Defender is alive.</td></tr>
<tr><td>[hell]\<b>disable settings app header</b></td><td>quality</td><td>Disables the ginormous header in the Settings app that shows your user name, picture and tells you to do stuff with Microsoft services.</td></tr>
<tr><td>[hell]\<b>disable silent app install</b></td><td>performance, quality</td><td>Stops Windows from downloading random shitty apps.</td></tr>
<tr><td>[hell]\<b>disable start menu suggestions</b></td><td>quality</td><td>Removes the &quot;Suggested&quot; category in the start menu.</td></tr>
<tr><td>[hell]\<b>disable third party apps</b></td><td>performance</td><td>Disables a bunch of interfaces relating to extra apps being downloaded at random.</td></tr>
<tr><td>[hell]\<b>disable tips tricks and suggestions</b></td><td>quality</td><td>Disable random push notifications telling you to use Microsoft services.</td></tr>
<tr><td>[hell]\<b>disable transparency</b></td><td>performance</td><td>Remove transparency effects from the start menu, taskbar and certain apps.</td></tr>
<tr><td>[hell]\<b>disable update check schedule</b></td><td>performance, telemetry</td><td>Keep Windows from checking for updates.</td></tr>

View File

@ -1 +0,0 @@
Stops Windows from downloading random shitty apps.

View File

@ -1,6 +0,0 @@
opusnt.runReg(["add",opusnt.regTmpPath+ "software\\Policies\\Microsoft\\Windows\\CloudContent","/v","DisableWindowsConsumerFeatures","/t","REG_DWORD","/d","0x00000001","/f"])
for reg in regs:
if not reg.startswith("user-"): continue
user = opusnt.regTmpPath + reg
opusnt.runReg(["add",user + "\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager","/v","SilentInstalledAppsEnabled","/t","REG_DWORD","/d","0x00000000","/f"])

View File

@ -1 +0,0 @@
performance quality

View File

@ -0,0 +1 @@
Disables a bunch of interfaces relating to extra apps being downloaded at random.

View File

@ -0,0 +1,8 @@
opusnt.runReg(["add",opusnt.regTmpPath + "software\\Policies\\Microsoft\\Windows\\CloudContent","/v","DisableWindowsConsumerFeatures","/t","REG_DWORD","/d","1","/f"])
opusnt.runReg(["add",opusnt.regTmpPath + "software\\Microsoft\\PolicyManager\\current\\device\\Start","/t","REG_SZ","/d",'{\\"pinnedList\\": [{}]}',"/f"])
for reg in regs:
if not reg.startswith("user-"): continue
user = opusnt.regTmpPath + reg
opusnt.runReg(["add",user + "\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager","/v","OemPreInstalledAppsEnabled","/t","REG_DWORD","/d","0","/f"])
opusnt.runReg(["add",user + "\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager","/v","PreInstalledAppsEnabled","/t","REG_DWORD","/d","0","/f"])
opusnt.runReg(["add",user + "\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager","/v","SilentInstalledAppsEnabled","/t","REG_DWORD","/d","0","/f"])

View File

@ -0,0 +1 @@
performance