Tweaks Not Functioning + some addons[if possible]

Hi Nuhi,

These are based for Windows 10 1809

--> NOT WORKING --> <Tweak name="System\AllowClipboardHistory">1</Tweak>

Code:
[HKEY_CURRENT_USER\Software\Microsoft\Clipboard]
"EnableClipboardHistory"=dword:00000001


Hope to have these options tweaks below in NTLITE although we can easily do it with registry files:

  • Settings - System - Storage Sense - Default OFF:
Code:
; Options to Turn it On
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy]
"01"=dword:00000001
"04"=dword:00000001
"08"=dword:00000001
"32"=dword:00000001



  • Settings - Devices - Pen & Windows Ink - Show recommended app suggestions - Default ON:
Code:
; [Turn Off App Recommendations]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PenWorkspace]
"PenWorkspaceAppSuggestionsEnabled"=dword:00000000



  • Settings - Apps - Apps & features - "Show me app recommendations" - Default ON:
Code:
; [DEFAULT ON]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PenWorkspace]
"AicEnabled"="Recommendations"

; [Turn Off App Recommendations]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"AicEnabled"="Anywhere"



  • Settings - Privacy - Diagnostics & feedback - Feedback frequency - Default Automatically (Recommended)
Code:
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Siuf\Rules]
"NumberOfSIUFInPeriod"=dword:00000000
"PeriodInNanoSeconds"=-



  • Settings - Privacy - Radios - Access to control radios on this device is on
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\radios]
"Value"="Deny"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\radios]
"Value"="Deny"



  • Settings - Privacy - App diagnostics - App diagnostic info access for this device is on
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\appDiagnostics]
"Value"="Deny"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\appDiagnostics]
"Value"="Deny"


Hopefully this is not too much work to addon.
 
Back
Top