ANAVEM
Languagefr
Fix Microsoft Edge Error "This App Can't Run on Your PC" – Windows 11 2026
Fix GuideThis app can't run on your PCMicrosoft Edge

Fix Microsoft Edge Error "This App Can't Run on Your PC" – Windows 11 2026

Resolves the "This app can't run on your PC" error that appears when clicking Widgets board links in Windows 11, typically caused by problematic Edge extensions or blocked helper applications.

Emanuel DE ALMEIDAEmanuel DE ALMEIDA
March 18, 2026 12 min 0
This app can't run on your PCMicrosoft Edge 5 methods 12 min
Instant Solution

The fastest solution is to disable all Edge extensions by navigating to edge://extensions, turning off all extensions, then re-enabling them one by one to identify the problematic extension causing the handoff failure.

Understanding the Edge Widgets Integration Error

The "This app can't run on your PC" error in Windows 11 represents a critical breakdown in the handoff mechanism between the Widgets board and Microsoft Edge. This error typically manifests when users click news links or web content from the Widgets panel (Win + W), but Edge fails to properly launch or process the request due to conflicting extensions or corrupted integration components.

Unlike standard application compatibility errors, this specific issue stems from the complex interaction between Windows 11's WebView2 runtime, the Widgets board service, and Edge's extension ecosystem. The error often appears as a blue dialog box that provides little context about the actual root cause, making diagnosis challenging for both users and administrators.

The most common trigger involves legacy security extensions or browser add-ons that attempt to intercept link clicks but reference non-existent helper applications or blocked processes. McAfee, Norton, and other security suites frequently leave behind registry entries and extension remnants that interfere with normal browser handoff operations, even after proper uninstallation.

This comprehensive guide addresses the systematic identification and resolution of these handoff failures, providing enterprise-grade troubleshooting methods that resolve the issue permanently while preserving user data and browser functionality.

Related: Microsoft confirms ongoing Windows 11 File Explorer flash

Related: KB5079420 — March 2026 Hotpatch Security Update for Windows

Related: KB5077181 — February 2026 Cumulative Update for Windows 11

Related: Windows 11 Gets March 2026 Updates KB5079473 and KB5078883

Related: How to Fix Windows Update Errors on Windows 11 (2026

Diagnostic

Symptoms

  • Blue "This app can't run on your PC" popup appears when clicking Widgets board links
  • Error occurs specifically when opening news or web content through Windows 11 Widgets (Win + W)
  • Normal Edge browsing works fine, but Widgets-launched content triggers the error
  • Error may appear when downloading files or launching specific programs from Edge
  • Multiple Edge processes remain running in Task Manager after closing browser windows
Analysis

Root Causes

  • Edge extensions with blocked or missing helper applications attempting to intercept link handoffs
  • Legacy security add-ons (McAfee, Norton, etc.) with defunct components still registered in Edge
  • Corrupted Edge user profile data affecting the Widgets integration
  • Windows security policies blocking extension-initiated processes
  • Incompatible or outdated browser handlers registered for specific file types or protocols
Resolution Methods

Solutions

01

Disable and Test Edge Extensions

This method isolates problematic extensions by systematically disabling them.

  1. Open Microsoft Edge and navigate to edge://extensions in the address bar
  2. Turn off all extensions by clicking the toggle switch next to each extension name
  3. Close all Edge windows completely
  4. Open Task Manager (Ctrl + Shift + Esc) and end any remaining Microsoft Edge processes under the Processes tab
  5. Press Win + W to open the Widgets board
  6. Click on a news link or web content that previously triggered the error
  7. If the error stops appearing, re-enable extensions one at a time:
  8. Return to edge://extensions
  9. Enable one extension, then test the Widgets board again
  10. Repeat until you identify the problematic extension
  11. Once identified, remove the problematic extension by clicking Remove
Pro tip: Pay special attention to security extensions, ad blockers, and coupon tools as these commonly intercept link clicks.

Verification: Test the Widgets board multiple times with different types of content. The error should no longer appear when clicking links from the Widgets panel.

02

Reset Edge User Profile

This method creates a fresh Edge profile to eliminate corrupted data affecting Widgets integration.

  1. Close all Edge windows and end Edge processes in Task Manager
  2. Press Win + R and type %LOCALAPPDATA%\Microsoft\Edge\User Data
  3. Rename the Default folder to Default.backup
  4. Launch Edge - it will create a new default profile
  5. Sign in to your Microsoft account to sync bookmarks and settings
  6. Test the Widgets board by pressing Win + W and clicking various links
  7. If the issue persists, restore your original profile by:
  8. Closing Edge completely
  9. Deleting the new Default folder
  10. Renaming Default.backup back to Default
Warning: This method will reset your Edge settings, extensions, and stored passwords. Ensure you have sync enabled or backup important data first.

Verification: Open Edge and check that your bookmarks and settings are restored (if synced). Test Widgets board functionality without the error appearing.

03

Clear Edge WebView2 Runtime Cache

This method addresses issues with the WebView2 runtime that powers the Widgets board integration.

  1. Close all Edge windows and Microsoft Store apps
  2. Press Win + R and run %LOCALAPPDATA%\Microsoft\EdgeWebView\User Data
  3. Delete all contents of this folder (select all with Ctrl + A, then Delete)
  4. Open SettingsAppsInstalled apps
  5. Search for "Microsoft Edge WebView2 Runtime"
  6. Click the three dots next to it and select Advanced options
  7. Click Reset to clear the WebView2 cache and data
  8. Restart your computer
  9. After restart, press Win + W to test the Widgets board
Pro tip: The WebView2 runtime is shared by multiple applications, so this reset may affect other apps that use embedded web content.

Verification: Run msedge --version in Command Prompt to confirm Edge is working properly, then test Widgets board links multiple times.

04

Repair Edge Installation via PowerShell

This method uses PowerShell to repair the Edge installation and re-register its components.

  1. Right-click the Start button and select Windows Terminal (Admin)
  2. Run the following command to check Edge installation status:
Get-AppxPackage -Name Microsoft.MicrosoftEdge.Stable
  1. If Edge appears in the results, repair it with:
Get-AppxPackage -Name Microsoft.MicrosoftEdge.Stable | Reset-AppxPackage
  1. For the traditional Edge installation, run:
sfc /scannow
  1. Then run DISM to repair Windows components:
DISM /Online /Cleanup-Image /RestoreHealth
  1. Re-register Edge components:
Get-AppxPackage -AllUsers | Where-Object {$_.Name -like "*Edge*"} | ForEach-Object {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  1. Restart your computer and test the Widgets board

Verification: Run Get-Process msedge in PowerShell after opening Edge to confirm it's running properly, then test Widgets functionality.

05

Modify Registry to Disable Problematic Handlers

This advanced method removes problematic protocol handlers that may be causing the handoff failures.

Warning: Always backup your registry before making changes. Incorrect modifications can cause system instability.
  1. Press Win + R and type regedit
  2. Navigate to HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations
  3. Look for entries related to problematic extensions or security software
  4. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Classes
  5. Look for protocol handlers that might be registered by removed security software:
  6. Search for keys containing "mcafee", "norton", "avast", or other security vendor names
  7. Right-click suspicious entries and select Export to backup before deletion
  8. Delete entries that reference non-existent executable files
  9. Navigate to HKEY_CURRENT_USER\SOFTWARE\Microsoft\Edge\Extensions
  10. Remove any extension entries that correspond to uninstalled or problematic extensions
  11. Close Registry Editor and restart your computer
  12. Test the Widgets board functionality
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations\https\UserChoice

Verification: Open edge://settings/defaultBrowser to confirm Edge is still set as default browser, then test Widgets board links extensively.

Validation

Verification

To confirm the fix worked properly, perform these verification steps:

  1. Press Win + W to open the Widgets board
  2. Click on at least 5 different news articles or web links from various sources
  3. Verify that Edge opens normally without the "This app can't run on your PC" error
  4. Test downloading a file from a website opened through Widgets
  5. Run this PowerShell command to check for Edge process health:
Get-Process msedge | Select-Object ProcessName, Id, WorkingSet

If all tests pass without errors, the issue is resolved. The Widgets board should now function normally with Edge integration.

If it still fails

Advanced Troubleshooting

If the above methods didn't resolve the issue, try these advanced troubleshooting steps:

Check Windows Security Settings

Navigate to SettingsPrivacy & securityWindows SecurityApp & browser control. Ensure that "Check apps and files" is not set to "Block" which might prevent Edge helper processes from running.

Examine Event Viewer Logs

Open Event Viewer and check Windows LogsApplication for Edge-related errors occurring around the time of the popup. Look for Event IDs 1000, 1001, or 1002 related to application crashes.

Create New Windows User Account

Create a test user account via SettingsAccountsFamily & other users. Log in as the new user and test if the issue persists. If it works, the problem is user-profile specific.

Reset Windows 11 Widgets

Run this PowerShell command as administrator:

Get-AppxPackage -Name MicrosoftWindows.Client.WebExperience | Reset-AppxPackage

This resets the entire Widgets system. If none of these solutions work, consider performing a Windows 11 in-place upgrade or contacting Microsoft Support for hardware-specific compatibility issues.

Frequently Asked Questions

Why does this error only happen with Widgets board links and not regular Edge browsing?+
The Widgets board uses a different launch mechanism than normal Edge browsing. When you click a Widgets link, Windows 11 uses the WebView2 runtime to hand off the URL to Edge, which can trigger extension intercepts or protocol handlers that don't activate during normal browsing. This handoff process is more susceptible to interference from legacy security extensions or corrupted browser handlers that attempt to scan or modify the link before Edge processes it.
Can I safely delete all Edge extensions to fix this issue?+
Yes, temporarily disabling or removing all Edge extensions is safe and often the fastest diagnostic method. Your extension data and settings are preserved even after removal, and you can reinstall extensions from the Microsoft Edge Add-ons store. However, you'll need to reconfigure any custom settings for security extensions or password managers after reinstallation. Always note down important extension configurations before removal.
What should I do if the error persists after trying all extension-related fixes?+
If extension fixes don't work, the issue likely involves the WebView2 runtime, corrupted Edge profile data, or Windows security policies. Try resetting the Edge profile by renaming the Default folder in %LOCALAPPDATA%\Microsoft\Edge\User Data, then clearing the WebView2 cache. If that fails, run SFC and DISM scans to repair Windows components, or create a new user account to test if the issue is profile-specific.
How can I prevent this error from happening again after fixing it?+
To prevent recurrence, avoid installing browser extensions from unknown sources, regularly update Edge through Windows Update, and properly uninstall security software using their official removal tools rather than standard Windows uninstall. Monitor the Widgets board functionality after installing new software, and maintain regular backups of your Edge profile data. Consider using Edge's built-in security features instead of third-party browser protection extensions.
Is this error related to Windows 11's security features blocking legitimate applications?+
Sometimes yes. Windows 11's enhanced security features, including SmartScreen and controlled folder access, can block helper applications that extensions try to launch. Check Windows Security settings under App & browser control to ensure legitimate Edge processes aren't being blocked. However, the error more commonly results from extensions attempting to launch non-existent or corrupted helper files left behind by uninstalled security software, rather than Windows blocking legitimate applications.
Emanuel DE ALMEIDA
Written by

Emanuel DE ALMEIDA

Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...