From a2b9e4baa1d8efa3270d73e3e9fc2f155d96ff4f Mon Sep 17 00:00:00 2001 From: jestxfot <87380272+jestxfot@users.noreply.github.com> Date: Sun, 10 Jul 2022 16:41:52 +0000 Subject: [PATCH] Microsoft store policies app autoupdate --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 767d625..511ce7a 100644 --- a/README.md +++ b/README.md @@ -283,7 +283,7 @@ Taskbar: -
πŸ—‘ Remove ALL UWP (NOT WindowsStore) +
πŸ—‘ Remove ALL UWP (NOT Microsoft Store) ```powershell Get-AppxPackage -AllUsers | where-object {$_.name –notlike "*store*"} | Remove-AppxPackage @@ -359,6 +359,17 @@ Taskbar: ```
+ + +
πŸ—ƒ Disable Apps Microsoft Store AutoUpdate and Install + + ```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 + ``` +
+ +
πŸ—ƒ Disable Cortana ```powershell