NTLite settings in an image can be changed after installation?

XerXes777

New Member
Messages
5
Reaction score
0
If I make settings in an image, can I change them after installing the image?
E.g. Settings -> Windows Update -> Windows Update Service Download or Settings -> Privacy -> Allow Telemetry.
I have set these and could not find this setting under gpedit.msc.
Where were these settings changed?
 
Licensed copies of NTLite can always apply the same Settings to a live system.

WU service download:
gpedit.msc -> Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update -> Manage end user experience -> Configure Automatic Updates

Allow Telemetry:
gpedit.msc -> Computer Configuration -> Administrative Templates -> Windows Components -> Data Collection and Preview Builds -> Allow Diagnostic Data
 
Thank you very much for the quick reply.
I know where to find them in the gpedit.msc.
But these settings are set as not configured. Why is that?
 
Have you confirmed changes were applied to the image? Load the edited image, and run regedit.

Look for:
HKLM\NLTmp*SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\WU
HKLM\NLTmp*SOFTWARE\Policies\Microsoft\Windows\DataCollection
 
I'm not talking about the live system. I think you're asking why Settings applied to the image, are not found on the installed system.

We need to load the install image, and check the registry values FROM the mounted image. NTLite loads the registry hives under the temporary NLTmp* paths for its own use (and you can examine them).
 
Hello,
it seems that the reg entry for the update setting “AUOptions = 3” is no longer accepted by Windows?

Windows 21H2
Windows Feature Experience Pack 1000.19060.1000.0
 
This is normal and expected behavior. When you configure WU settings in an image, it's done by applying reg changes expressing a Group Policy. Because it's enforced by a system-level GPO, Settings warns you this feature is managed by your organization.

If you want to update AUOptions or other WU settings, you have to use Group Policy Editor or run a reg command.
Code:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v AUOptions /d 3 /f
 
This is normal and expected behavior. When you configure WU settings in an image, it's done by applying reg changes expressing a Group Policy. Because it's enforced by a system-level GPO, Settings warns you this feature is managed by your organization.

If you want to update AUOptions or other WU settings, you have to use Group Policy Editor or run a reg command.
Code:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v AUOptions /d 3 /f
Thanks!
 
Back
Top