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