Prevent the "new" tag from appearing in the start menu

Discussion in 'Windows 10' started by Windows 10 User, Dec 26, 2019.

  1. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90
    #1 Windows 10 User, Dec 26, 2019
    Last edited: Jul 13, 2023
    Is there a way to prevent the "new" tag from appearing in the start menu on Windows 10 1909 every time a program is installed?
     
  2. bfoos

    bfoos MDL Guide Dog

    Jun 15, 2008
    757
    703
    30
    It's not currently possible. They have not implemented any method either through settings or the registry to control this feature. Currently the only ways to remove the "New" tag or to either run the app with the tag from the start menu or if you'd rather not run it by left clicking, right clicking removes it as well.
     
  3. bfoos

    bfoos MDL Guide Dog

    Jun 15, 2008
    757
    703
    30
    I'm not seeing any newly installed apps in your first screenshots. I missed Speccy. Is that a regedit? Because I am unaware of any methods to stop that behavior. Not that I use the default start menu anyway. Open Shell all the way!
     
  4. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,256
    20,912
    210
    How to turn off the 'NEW' tag for Apps/Programs recently added in the Start Menu(s) via script.

    Code:
    
    REM Windows Vista+
    REG add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_NotifyNewApps" /t REG_DWORD /d "0" /f >nul 2>&1 
    REG add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_NotifyNewApps" /t REG_DWORD /d "0" /f >nul 2>&1 
    
    REM If Windows 8.x/10 add these lines too.
    REG add "hklm\Software\Policies\Microsoft\Windows\Explorer" /v "HideRecentlyAddedApps" /t REG_DWORD /d "1" /f >nul 2>&1 
    REG add "hklm\Software\Policies\Microsoft\Windows\Explorer" /v "NoNewAppAlert" /t REG_DWORD /d "1" /f >nul 2>&1 
    
    REG add "hkcu\Software\Policies\Microsoft\Windows\Explorer" /v "HideRecentlyAddedApps" /t REG_DWORD /d "1" /f >nul 2>&1 
    REG add "hkcu\Software\Policies\Microsoft\Windows\Explorer" /v "NoNewAppAlert" /t REG_DWORD /d "1" /f >nul 2>&1 
    
    
    OpenShell may use the same registry settings internally.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,299
    450
    :hug::hug2:
     
  6. bfoos

    bfoos MDL Guide Dog

    Jun 15, 2008
    757
    703
    30
    Most of that has nothing to do with the new tag and the first reg key is specifically what got set in windows 7 when you disabled highlighting of new programs and was not applicable to windows 10. If it works now, cool I guess, otherwise chalk it up to misimformation. Open Shell being a completely self contained implementation can change whatever behavior the developers implement.
     
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,299
    450
    It probably is the code he uses in his MRP project, i showed working.
     
  8. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,256
    20,912
    210
    I cover all bases for all OS's hence why those are shown, the REM statements clearly show what OS's they are for.

    The ones for 8.0+ do suppress the 'New' tag on the Start Menu for the newer OS's, unless m$ have suddenly altered some group edit policies and the corresponding reg entries... :g:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. bfoos

    bfoos MDL Guide Dog

    Jun 15, 2008
    757
    703
    30
    Windows sure is getting mysterious with all the some stuff shows up on some systems but not on others and some hidden solutions work on some but not on others.:g:
     
  10. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,299
    450
  12. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90
  13. bfoos

    bfoos MDL Guide Dog

    Jun 15, 2008
    757
    703
    30
    Copy it into a text file and save it as a .bat file. Then double click it.
     
  14. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90
    #15 Windows 10 User, Jan 6, 2020
    Last edited: Aug 18, 2024
    (OP)
    I ran it after creating it and it's not preventing the "new" tag from appearing in the start menu.

    EDIT: Tried it in Windows 10 and it's not working too.
     
  15. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90
    #16 Windows 10 User, Aug 10, 2024
    Last edited: Aug 18, 2024
    (OP)
    .
     
  16. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90