Forum Discussion

wentto's avatar
wentto
Tin Contributor
Sep 02, 2026

Why is the uninstall button greyed out in Windows 11 for app removal?

Personally, I dislike the Bing search app and edge browser as they pop up from time to time without my permission. I just want to delete both from my Windows 11 computer.

When I go to the Settings -> Apps ->Installed apps and found out the Microsoft Bing and Edge app, the "Uninstall" button is greyed out, see the screenshot.

Is there a way to fix the uninstall button greyed out in Windows 11 for these preinstalled system apps?

 

 

8 Replies

  • Celesto's avatar
    Celesto
    Tin Contributor

    The "Ultimate Cleanup" method of running sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth can be a helpful step when the uninstall bing button greyed out in Windows 11.

    What This Method Does

    • sfc /scannow (System File Checker): This command scans all protected Windows system files and replaces corrupted or missing files with a cached copy . If a damaged system file is preventing the uninstall button from working correctly, this can resolve it.
    • DISM /Online /Cleanup-Image /RestoreHealth (Deployment Imaging Service and Management Tool): This command repairs the local Windows image, which is what the sfc tool uses to replace corrupted files . It ensures the "source" of your system files is healthy, making the sfc command more effective.

     

    Key Limitations and Context

    • It May Not Work for Bing: A crucial consideration is that an app like Bing can be deeply integrated into Windows 11 24H2 as a system component, meaning it literally cannot be uninstalled through any method . If your goal is specifically to resolve a Uninstall Bing button greyed out in Windows 11 issue, this system-level integration might be the root cause that commands like sfc and DISM cannot override.

     

    Using sfc /scannow and DISM is a worthwhile and free step to take as a diagnostic tool. It can fix underlying system corruption that might be causing a greyed-out uninstall button for many apps. However, if the problem is a system-integrated app like Bing or a corrupted installer registration, this method will not be the final solution.

  • When the uninstall button is greyed out for Microsoft Edge on Windows 11, using the registry cleanup method is a well-known workaround that can restore the uninstall option, effectively solving the Edge uninstall greyed out on Windows 11 issue. This involves modifying a specific registry key that controls the uninstall permissions for Edge.

    Here is a typical registry modification method:

    1. Press Windows Key + R, type regedit, and press Enter to open the Registry Editor.

    2. Navigate to the following path:
    HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge

    3. Find a value named NoRemove.
    4. Double-click NoRemove and change its value data from 1 to 0.
    5. Click OK and close the Registry Editor.
    6. Open the Control Panel, go to Programs and Features (or Uninstall a program), and you should now see an active Uninstall button for Microsoft Edge.

    Important Caveats and Other Approaches

    • Effectiveness Varies: This registry method has been reported to be successful by some users. However, it's important to know that other users have found it ineffective. In some cases, while the "Uninstall" button reappears, it may fail to actually remove the Edge browser.
    • Force Uninstall Command: Besides registry modification, a common method to tackle the Edge uninstall greyed out on Windows 11 issue is to navigate to the Edge installation folder and run its built-in uninstaller with a force command. The typical path is C:\Program Files (x86)\Microsoft\Edge\Application\[version number]\Installer, where you can execute setup.exe --uninstall --system-level --verbose-logging --force-uninstall.

     

    Safety Warning: Editing the Windows Registry is a powerful system-level operation. Incorrect changes can lead to system instability. It is strongly recommended to back up the registry or create a system restore point before making any modifications.

  • Su-Jace's avatar
    Su-Jace
    Tin Contributor

    Using PowerShell is one of the most effective methods when the uninstall button is greyed out in Windows 11. This is because many built-in or pre-installed apps are deployed as system-level packages (AppxPackages) where the graphical interface lacks the necessary permissions, but PowerShell can bypass this limitation.

    The process involves two key steps: identifying the exact package name of the app, and then using the correct command to remove it.

    1. Find the App's Package Name
    First, you need to find the app's full package name. To do this, open PowerShell as an administrator (right-click the Start button and select "Terminal (Admin)" or "Windows PowerShell (Admin)").

    Then, run the following command to list all apps and their full names:

    powershell
    Get-AppxPackage | Select Name, PackageFullName

    You can also narrow the search by using a keyword. For instance, if you're trying to solve the Uninstall Bing button greyed out in Windows 11, you would use:

    powershell
    Get-AppxPackage *Bing*

    This will list all packages containing "Bing." Look for the one with the name you want to remove, like Microsoft.BingNews or Microsoft.BingWeather, and copy its PackageFullName.

    2. Remove the App Using PowerShell

    Once you have the PackageFullName, you can remove it with this command:

    powershell
    Remove-AppxPackage "PackageFullName"

    Replace "PackageFullName" with the string you copied. For example, if you are targeting the News app and have found the Uninstall Bing button greyed out in Windows 11 issue, you can use a more direct command that doesn't require copying the full name:

    powershell
    Get-AppxPackage *BingNews* | Remove-AppxPackage

    This command finds the Bing News package and removes it in one step.

  • Delilahsw's avatar
    Delilahsw
    Copper Contributor

    The uninstall button in Windows 11 may be greyed out when an app is treated as a system component or is protected by Windows. This can be especially confusing when dealing with built-in applications such as Edge uninstall greyed out on Windows 11.

    FAQ

    1. Why is the uninstall button greyed out?
    Some Windows components cannot be removed through the normal Settings interface.

    2. Why is Edge uninstall greyed out on Windows 11?
    Microsoft Edge is closely integrated with Windows, so its uninstall option may be unavailable depending on the Windows version and configuration.

    3. Can I remove an app when the uninstall option is unavailable?
    Some applications may require a different built-in removal method rather than the standard Settings option.

    4. Will removing a built-in Windows app cause problems?
    Potentially, especially if other Windows features depend on it, so it's important to understand the app's role first.

    5. Is Edge uninstall greyed out on Windows 11 normal?
    Yes, it can be normal depending on the Windows edition, version, and how the application is integrated with the system.

  • Trying to figure out why the "uninstall" button is greyed out in Windows 11? CTT Windows Tool (Chris Titus Tech's Windows Utility) can help you remove built-in apps and system components that Windows normally won't let you uninstall through the Settings app. It's a PowerShell-based tool that gives you more control over what stays and what goes on your system.

    To use it, open PowerShell as administrator and run the command:

     irm "https://christitus.com/win" | iex.

    Once the menu loads, navigate to the "Tweaks" section and look for options to remove preinstalled apps or bloatware. The tool will bypass the greyed-out uninstall button and let you remove apps like Edge, Cortana, or other system components that are normally locked down. Be careful though—removing certain apps can affect system functionality, so it's worth knowing what you're getting rid of.

    So if you've been wondering why the "uninstall" button is greyed out in Windows 11, it's usually because Windows protects built-in apps from accidental removal. CTT Windows Tool gives you a way around that limitation, but with the understanding that you're taking full responsibility for what you remove. It's a useful tool for cleaning up your system, but it's not meant for casual users who aren't sure what they're removing.

    Pros:

    • Removes apps Windows normally locks.
    • simple to use.

    Cons:

    • Can break system features if used carelessly.
    • Not beginner-friendly.
  • DanielHarvey's avatar
    DanielHarvey
    Iron Contributor

    A greyed-out Uninstall button in the system settings can prevent you from removing an unwanted application through the usual method. When dealing with how to fix the uninstall button greyed out in windows 11, CleanMate provides an App Uninstaller that can list installed desktop programs and Store apps separately from the standard Settings interface, giving you another way to start the removal process.

    How to  fix the uninstall button greyed out in windows 11

    Step 1: Open the program with administrator privileges and select App Uninstaller from the left sidebar. Wait for the Installed Apps list to finish loading.

    Step 2: Use the search box at the top to enter the name of the application whose normal Uninstall button is unavailable. You can also use the All Apps menu to narrow down the displayed applications.

    Step 3: Check the results carefully because the same application may have several related entries. Look at the App Name, Publisher, Size, and installation information to identify the entry you actually want to remove.

    Step 4: Tick the checkbox beside the correct application. Once an item is selected, the Uninstall Selected button at the bottom should become available.

    Step 5: Click Uninstall Selected and follow any removal prompts that appear. Wait until the uninstall operation finishes rather than closing the program during the process.

    Step 6: Click Refresh afterward and check whether the application has disappeared from the installed-app list. Restart the computer if the removed program still appears in Settings.

    Using the dedicated App Uninstaller avoids relying solely on the disabled button in system settings. However, applications that are protected system components may intentionally resist removal, so do not force-delete program folders or run PowerShell removal commands until you have confirmed the exact package.

  • People searching for how to fix the uninstall button greyed out in windows 11 may notice that Microsoft Edge cannot be removed through Settings because the Uninstall button is unavailable. This is different from an ordinary application uninstall, since Edge can be treated as a system-integrated component depending on the Windows build and region. Changing permissions or manually deleting its folders is a common mistake because it can leave WebView and other related components in an inconsistent state.

    edge-remover is a community script intended to remove Edge and related components when the normal Windows interface does not provide an uninstall option. Download the project from its repository, extract it, and review the included script before running anything. Close Edge and other applications that may use its processes, then run the appropriate removal script as administrator. Follow the script prompts and let it complete rather than deleting browser folders manually. A separate command is usually unnecessary because the provided script handles the removal procedure itself.

    After the script finishes, restart the computer and check Settings > Apps > Installed apps to see whether the browser entry has been removed. Also test applications you normally use, because some Windows features and third-party programs rely on Edge WebView2, which should not be removed just because the browser itself is unwanted. For users dealing with how to fix the uninstall button greyed out in windows 11, remember that later Windows updates can restore or change system components, so removing the browser with a third-party script is not the same as making the greyed-out Windows button permanently available.