13.14. A Registry Deployment Use CaseΒΆ

In a Windows machine, the Registry is a hierarchical database of lower level settings. The purpose of it is to serve as an archive that collects and stores configuration settings of Windows components, Hardware and Software. These configuration setting entires are retrieved by their respective Windows components, Hardware and Software at startup.

Windows Registry contains keys and values and by manipulating them we can change the behavior of the OS. Now we are going to create a Registry Configuration (also create Registry Items) that disables the automatic update button in Windows 10. Then we are going to deploy the Configuration by creating a Deployment Request.

Creating a Registry Configuration:

  • We are going to create a Configuration called **Disable Windows Auto-Update ** (Creating a Registry Configuration).

  • We require a single Registry Item that would disable the automatic update button in Windows 10 (Creating a new Registry Item).

    We locate the following location key: HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsWindowsUpdateAU. We then add the value data 1 having the data type: Reg_DWORD to the value Name: NoAutoUpdate. It translates into the following arguments for the Registry Item:

figure 1
  • Now we have created the Registry Item, and then we update the Configuration.

figure 2
figure 3
  • We check the Deploy Status to know whether the deployment was successful.