Turn off Automatic Updates for Microsoft Store apps via Registry, GPO or Command line

The Microsoft Store is the most trusted place for Windows 10 users to obtain copies of applications and games. Not only does the Microsoft Store feature hundreds of applications, but it also has loads of features, some of which we need and others that we can do without.

You can set the Microsoft Store to automatically download new versions of your applications whenever there are any. This is an excellent feature but can also tell on your data bandwidth usage and battery, as with any process that runs in the background.

If you’d prefer to update your applications by yourself, you have to turn off the automatic update feature. This guide will show you how to disable or enable automatic updates in the Microsoft Store. We’ll also teach you how to update the applications manually if you have them disabled.

Disable Automatic Updates for Microsoft Store apps

I’ll show you the following 5 ways to disable automatic Microsoft Store app updates:

  1. Via the Microsoft Store.
  2. Using the Windows Registry.
  3. Using the Group Policy Object Editor.
  4. Using PowerShell.
  5. Using Command prompt.

Continue reading this section for detailed, step-by-step guides for the above methods.

1] Turn off automatic updates from the Microsoft Store

We’ll turn off automatic up Microsoft Store updates right from the store, so you have to launch it to begin. This is the most straightforward way to disable auto-updating.

You can press the Windows key, search for the Microsoft Store, and select the search result’s first item. Click on the three dots on the top right-hand corner and select Settings from the resulting menu.

On the Settings screen, toggle off the switch beside Update apps automatically.

Disable Automatic Updates for Microsoft Store apps

Disable Automatic Updates for Microsoft Store apps

Once you do this, the Microsoft Store will no longer update your applications in the background. It will only happen when you initiate the updating.

To re-enable auto-updating, follow the steps above but toggle on the Automatic app updating switch.

2] Disable automatic updates from the Windows Registry

You can also disable Microsoft Store automatic updates from the Windows Registry. For this, press the Windows key and search for regedit. Right-click on the Registry Editor and select the Run as an Administrator.

Navigate to the following folder in the Windows Registry:

HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsStore

Here, right-click on a space on the right-hand side and go to New > DWORD Value. Name this DWORD AutoDownload and assign it the value of 2.

3] Disable auto-updating of Microsoft Store apps from the Group Policy Object Editor

Open the Microsoft Management Console. If you don’t know where this is, search for MMC in the Start menu and select it. Click on Yes when prompted to open the MMC.

In the Console window, go to File > Add/Remove Snap-in.. and find Group Policy Object Editor from the left-hand list. Select this snap-in and click the Add button in the middle.

Click on Finish in the window that pops up. Finally, hit the Ok button to finish adding the Snap-in.

Next, navigate to Local Computer Policy > Computer Configuration > Administrative Templates > Windows Components > Store.

Double-click on Turn off automatic download and install of updates.

disable automatic updates from policy

disable automatic updates from policy

On the window that opens, select the Enabled radio option and click on OK.

4] Disable auto-updating of Microsoft Store apps through PowerShell

Right-click on the Start menu button and select PowerShell (Admin). Copy and paste the following code onto the PowerShell window:

$Name = “AutoDownload”

$Value = 2

$Path = “HKLM:SOFTWAREPoliciesMicrosoftWindowsStore”

If ((Test-Path $Path) -eq $false){

New-Item -Path $Path -ItemType Directory

}

If (-!(Get-ItemProperty -Path $Path -Name $name -ErrorAction SilentlyContinue)){

New-ItemProperty -Path $Path -Name $Name -PropertyType DWord -Value $Value

}

else{

Set-ItemProperty -Path $Path -Name $Name -Value $Value

}

5] Disable auto-updating of Microsoft Store apps from Command prompt

Press the Windows key and search for cmd. Right-click on Command Prompt and select Run as Administrator.

Type the following command into the Command Prompt window and hit enter to run it:

reg add HKLMSOFTWAREPoliciesMicrosoftWindowsStore /v AutoDownload /t REG_DWORD /d 2 /f

That’s it.

Download PC Repair Tool to quickly find & fix Windows errors automatically

With automatic updating disabled in the Microsoft Store, your applications will remain out of date until you update them manually. Follow these steps to update your Microsoft Store apps manually.

disable update apps automaticallydisable update apps automatically

 

Original Article