Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / How to Hide Installed Programs in Windows 10 and 11

August 11, 2024

How to Hide Installed Programs in Windows 10 and 11

In this post, we’ll show how to hide any program from the list of installed apps from the Windows Control Panel. This guide applies to all Windows versions, including Windows 10 and 11.

Contents:
  • Hide a Specific Program from the Control Panel and Settings App
  • How to Hide All Installed Apps from Other Users

Hide a Specific Program from the Control Panel and Settings App

For example, your task is to hide the entry for the Gimp graphics editor installed on your computer. Open the Control Panel, go to Programs and Features (run the appwiz.cpl command to navigate to this Control Panel applet) and check that Gimp 2.10.38 is in the list of installed programs.

List of installed apps in Windows 11 Control Panel

The modern Settings app also displays information about the installed program (Settings -> Apps -> Installed Apps, URI quick access command: ms-settings:appsfeatures).

Windows 11 shows installed programs in modern Settings app UI

The following registry keys contain the list of applications installed in Windows:

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall – installed apps for all users
  • HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall – contains entries for x86 programs on x64 Windows editions
  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall – apps installed only for the current user (in the user profile).

In this example, GIMP is installed for all users and the package information is available under the HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\GIMP-2_is1 registry key.

To hide an application from users, make one of the following changes to its registry key:

  • Create a new DWORD parameter SystemComponent with a value of 1
  • Or rename the DisplayName parameter to QuietDisplayName

SystemComponent registry parameter used to hide installed app

Refresh the list of the installed programs in the Control Panel (press F5 key). The GIMP entry should disappear from the list.

Hide Installed App from Programs and Features ...

The hidden app will also disappear from the Installed Apps page in the modern Settings pane.

Hide installed program from Settings app

The app is also hidden from the list of applications returned by the Winget package manager:

winget list| Select-String "GIMP"

hide installed app from winget list

Tip. To display the program in the list of installed apps, delete the SystemComponent registry parameter (or change its value to 0), or rename the QuietDisplayName parameter back to DisplayName.

Thus, you can use the following command to hide a specific app (the 7-zip archiver in this example):

REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\7-zip" /v SystemComponent /t REG_DWORD /d 1 /f

Or, rename the registry parameter using PowerShell to hide the specified program:

Rename-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\7-zip" -Name DisplayName -NewName QuietDisplayName -passthru

reg add SystemComponent

How to Hide All Installed Apps from Other Users

You can completely hide all installed programs from the user in the Control Panel.

Open the local GPO editor (gpedit.msc), go to the section User Configuration –> Administrative Templates –> Control Panel –> Programs, and enable the policy Hide “Programs and Features” page.

policy Hide “Programs and Features” page

Then hide the installed apps page in the Settings app via GPO. Navigate to User Configuration -> Administrator Templates -> Control Panel. Enable the policy Settings Page Visibility, and paste the following string hide:appsfeatures

Hide all installed apps from Setting page

How to hide specific pages in the Windows Settings app.

Update the Group Policy settings using the gpupdate /force command and check that the ‘Programs and Features’ dialog in the Control Panel is not visible to the user. The Control Panel will display the following message:

Your system administrator has disabled Programs and Features.

Your system administrator has disabled Programs and Feature

You can also use these commands to prevent Windows from displaying the list of installed programs in the Control Panel:

REG add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Programs" /v NoProgramsAndFeatures /t REG_DWORD /d 1 /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v SettingsPageVisibility /t REG_SZ /d "hide:appsfeatures" /f

26 comments
6
Facebook Twitter Google + Pinterest
PowerShellWindows 10Windows 11
previous post
How to Disable Microsoft Teams Auto Startup
next post
Find Windows Version, Edition, and Build from ISO or WIM file

Related Reading

How to Repair EFI/GPT Bootloader on Windows 10...

March 16, 2024

How to Restore Deleted EFI System Partition in...

March 11, 2024

How to Repair Windows Boot Manager, BCD and...

March 11, 2024

PowerShell: Get Folder Size on Windows

April 2, 2024

Fix: The Computer Restarted Unexpectedly or Encountered an...

May 16, 2024

Network Computers are not Showing Up in Windows...

March 15, 2024

How to Download Offline Installer (APPX/MSIX) for Microsoft...

March 12, 2024

Windows Doesn’t Automatically Assign Drive Letters

March 15, 2024

26 comments

mahim February 1, 2016 - 12:50 pm

i want to hide the game bloons TD battles from the apps menu how do i do it pls give me steps as fast as u can please as fast

Reply
Eli Lee September 29, 2016 - 3:32 pm

I’ve actually found a really cool glitch in order to get the game out of the app section of windows 10. However, in order to hide the game, it needs to be a file, like GTA, Minecraft, League, etc. The first step is just installing it first. Then, when the game shows up in the app section, just move it out of a folder and into a new folder. Then go to the app section and click on it. You should get a message saying that the shortcut no longer exists, and now asking you whether if you want to get rid of it. Hit enter, and poof, it’s gone. 🙂

Reply
Someone July 18, 2017 - 12:59 pm

This is a pretty easy way (Most people possible already knew this) but it can be dangerous if the game itself(or a mod manager) directs to other files from the game.
For example you install a game in Documents/My Games but you move it to Documents/Games and there still can be files that direct the game to Document/My Games

Reply
VictoriousVIC June 14, 2016 - 2:19 pm

hey i want to hide GTA5 and i have installed it on drive F. And i am not able to find it in “Registry Program” using the above way. Please help me.

Reply
none October 1, 2016 - 4:25 pm

“QuietDisplayName” was enough to hide some unwanted programs listed there. Thank you.

Reply
telealex October 7, 2016 - 3:13 pm

not for all apps worked these methods
 
I can’t find my

Reply
telealex October 7, 2016 - 3:19 pm

it’s need to use other method
help me please

Reply
Someone July 18, 2017 - 1:04 pm

Download ccleaner and follow “Option 2” on this document

Remove Uninstall Entry using “CCleaner” Program

1. If you have not already, download and install the latest version of the CCleaner.

2. Click on the CCleaner shortcut icon either on your desktop or in the Start Menu to run the program.

3. Click on the Tools button on the left.

4. Select the uninstall entry and click the Delete Entry button to remove it from the Programs and Features uninstall list.

5. Click on the X in the upper right corner to close CCleaner when done.
This info is copied try it with CCleaner

Reply
Elijah October 9, 2016 - 12:18 am

I can’t find programs such as CoD MW2 or 3 and AC in these folders, please help!

Reply
Jane June 8, 2017 - 4:47 am

Opera browser / internet download manager / other softwares i installed dont show up in the registry. I need to hide them pls help??

Reply
Telealex June 8, 2017 - 5:43 am

Hehe, still not exist known method?

Reply
Dan B June 20, 2017 - 10:40 am

Thanks very much. It worked for me. I searched the whole internet but I still could not get what i needed.

Reply
Slavi June 29, 2017 - 2:21 pm

It’s working mate, thank you so much.

Reply
Ab July 1, 2017 - 3:05 pm

Hello,
This is a very useful information, thank you.
I have a question if you don’t mind.
How to ‘unhide’ after hiding these programs in case i want to uninstall it?

Reply
Someone July 18, 2017 - 1:05 pm

Just make the new entry 0 or delete the new entry

Reply
ITSMART January 12, 2018 - 9:56 pm

NICE

Reply
jumper January 17, 2018 - 12:13 pm

hi i founnd some apps in
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

Reply
Emi October 15, 2018 - 8:20 pm

You’re absolutely right. It seems that x64 installed apps go here, and x86 go to folders, written in article.
BTW, it seems that hided apps are though displayed in “standard’ Programs & Features, from Control Panel. They may be situated here: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products
But I’m not sure. Test it out who’s brave enough 🙂

Reply
Ye Man February 26, 2018 - 7:50 am

Help Im trying To Get Rid Of Epic Games Launcher But It Won’t Work! Ive Tried Everything! It Worked For WinZip But Not Epic Games Launcher, Help?! (I Have A Windows 10 ASUS Laptop)

Reply
SOMEONE January 30, 2019 - 10:37 am

Thanks

Reply
soho April 6, 2019 - 12:00 pm

hi i have a problem . i cant find the program that i want to hide it please help me as fast as possible

Reply
alex troy August 17, 2019 - 7:24 am

nice……….

Reply
saskia January 10, 2020 - 7:25 pm

Hi i was just wondering, does the command said first actually uninstall the app?

Reply
wasd March 21, 2020 - 7:56 am

Anyone where the registry for Minecraft is located? Been searching for ages but can’t find it, any help would be great!

Reply
Alex June 7, 2020 - 12:45 pm

Works flawlessly. Thank you!

Reply
ABCGamer May 21, 2021 - 2:02 am

Wow it helped me play games without the notice of my father in his 50s

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
  • How to Download Offline Installer (APPX/MSIX) for Microsoft Store App
  • Configuring Port Forwarding in Windows
  • Start Menu or Taskbar Search Not Working in Windows 10/11
  • Get-ADUser: Find Active Directory User Info with PowerShell
  • Adding Drivers into VMWare ESXi Installation Image
  • Tracking and Analyzing Remote Desktop Connection Logs in Windows
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top