Microsoft store policies app autoupdate

This commit is contained in:
jestxfot
2022-07-10 16:41:52 +00:00
committed by GitHub
parent b99eea354d
commit a2b9e4baa1
+12 -1
View File
@@ -283,7 +283,7 @@ Taskbar:
</details>
<details><summary><b>🗑 Remove ALL UWP (NOT WindowsStore)</b></summary>
<details><summary><b>🗑 Remove ALL UWP (NOT Microsoft Store)</b></summary>
```powershell
Get-AppxPackage -AllUsers | where-object {$_.name notlike "*store*"} | Remove-AppxPackage
@@ -359,6 +359,17 @@ Taskbar:
```
</details>
<details><summary><b>🗃 Disable Apps Microsoft Store AutoUpdate and Install</b></summary>
```powershell
echo "Disable AutoUpdate Apps Microsoft Store"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f
```
</details>
<details><summary><b>🗃 Disable Cortana</b></summary>
```powershell