Quick checks to narrow it down
This pattern usually means Windows’ shortcut (.lnk) association got broken, or something is blocking process launch for certain apps.
Please try these two quick tests:
1) Press Win+R, type notepad and press Enter. Does Notepad open?
2) Press Win+R and run the full path to an app, e.g.:
"C:\Program Files\Mozilla Firefox\firefox.exe"
"C:\Program Files\Google\Chrome\Application\chrome.exe"
Do they open this way?
- If they open via full path but not from desktop/taskbar/Start: your .lnk (shortcut) association is likely broken.
- If they do not open even via full path: something is blocking launches (policy/AV/registry), or system files are damaged.
If shortcuts are broken (lnk fix)
1) Create a restore point (optional but recommended).
2) Open Notepad, paste the text below, save as FixLNK.reg (set Save as type to All Files), then double‑click it and accept the prompts. Sign out and back in.
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.lnk]
@="lnkfile"
[HKEY_CLASSES_ROOT\lnkfile]
@="Shortcut"
"EditFlags"=dword:00000001
"IsShortcut"=""
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk]
Tip: After this, desktop/taskbar/Start shortcuts should launch apps again.
If apps won’t start even by full path
Try these in order (test after each step):
1) Safe Mode: Hold Shift while clicking Restart → Troubleshoot → Advanced options → Startup Settings → Restart → press 4. If apps open in Safe Mode, a third‑party startup/AV is blocking them. Perform a clean boot and re‑enable items to find the culprit.
2) System file repair (elevated PowerShell or CMD):
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
3) Check for rogue “Image File Execution Options” (malware sometimes adds a Debugger to block apps):
- Run regedit and browse to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options
If you see subkeys like firefox.exe, chrome.exe, excel.exe, winword.exe with a value named Debugger, delete those subkeys (only those), then reboot.
4) New test user: Settings → Accounts → Family & other users → Add someone else to this PC. Sign into the new profile and try launching the apps. If they work there, the issue is profile‑specific (we can reset associations and startup entries in your main profile).
Two quick questions
- Did this start right after a Windows Update or installing/uninstalling security software? If so, which and on what date?
- What exactly happens with Win+R notepad and with running the full .exe paths above?
Reply with those results and I’ll give the next exact step based on what you see.