How can I disable "Store recently opened programs" using NTLite?

  • Thread starter Deleted member 2959
  • Start date
D

Deleted member 2959

Guest
How can i disable "Store recently opened programs" using NTLite?

Screenshot_1.png
 
This is the way I do it:
If the option is not in NTLite, then you can find the registry key to add or modify.

Create a registry file on your desktop. (Ex: Test.reg)
Add this to it:

Windows Registry Editor Version 5.00

; Turn off "Store and display recently opened programs in the Start menu"
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Start_TrackProgs"=dword:00000001


Save and Close.
Drag and drop the test.reg file to the Registry section under integrate

____________________________

If you want to do this in windows with powershell you can copy this:

Echo "Store and display recently opened programs in the Start menu"
$key0 = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
New-ItemProperty $Key0 -Name 'Start_TrackProgs' -Type DWord -value 1 -force | out-null

Either restart the explorer service or reboot to confirm the setting changed.
 
Back
Top