4 Fixes For Desktop Shortcuts Not Working on Windows 11

尊渡假赌尊渡假赌尊渡假赌
Release: 2024-09-18 17:47:39
Original
967 people have browsed it

Basic Fixes: 

  • Restart the computer: Sometimes, a restart is all you need because it is strong enough to force problematic processes that trigger the problem to shut down.
  • Scan the computer for malware: Malware alters the typical behavior of elements on your computer; you should scan with a strong antivirus.
  • Use System Restore: In some cases, the System Restore tool can restore your computer to a state before the problem started.

Fix 1: Verify and Update the Shortcut Target

Shortcuts on your desktop are linked to the app files they are supposed to open. So, while the shortcut may seem perfect, if the take path for the app is inaccurate, the shortcut will not work. The simple fix is to update the path, as shown below.

Step 1: Right-click on the problematic shortcut and click Open file location.

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 2: Take note of the file’s path; it is usually found on the address bar of the open File Explorer.

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 2: Right-click on the executable file and click Show more options.

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 3: Select Create shortcut from the context menu.

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Fix 3: Re-Register Apps

If desktop shortcuts are not working or showing on Windows, re-registering apps is effective, especially when the problem is with Microsoft Store apps. Installing an app will create registry entries that link it to essential functions like opening it from a shortcut. When re-registering the apps, you remove any corruption that may cause the error.

Step 1: Click the Search icon on the Taskbar, type PowerShell, and click the Run as administrator option.

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 2: Copy and paste the command below into PowerShell and hit Enter:

Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "<em>SystemApps</em>"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}
Copy after login

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Fix 4: Repair Windows With the DISM Tool

If icons on the desktop are blank or not loading correctly, you may have some major corruption in the system image. On Windows 11, you can use the native DISM scan to find and fix this corruption. Follow the steps below.

Step 1: Press Windows + R keyboard shortcut to launch the Windows Run dialog.

Step 2: Type cmd, and hit Ctrl + Shift + Enter keyboard shortcut to launch an elevated Command Prompt.

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 3: Type the command below and hit Enter to scan for image corruption:

DISM /Online /Cleanup-Image /ScanHealth
Copy after login

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 4: Type the command below and hit Enter to fix image corruption:

DISM /Online /Cleanup-Image /RestoreHealth
Copy after login

4 Fixes For Desktop Shortcuts Not Working on Windows 11

Step 5: Lastly, run the command below to initiate the SFC scan and restart your computer when the scan completes:

sfc /scannow
Copy after login

4 Fixes For Desktop Shortcuts Not Working on Windows 11

The above is the detailed content of 4 Fixes For Desktop Shortcuts Not Working on Windows 11. For more information, please follow other related articles on the PHP Chinese website!

source:guidingtech.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!