Start >Run> "MS-Settings:(insert name)", Gives me "No apps are installed to open this type of link"

2 min read 19-10-2024
Start >Run> "MS-Settings:(insert name)", Gives me "No apps are installed to open this type of link"

When using Windows, you may sometimes encounter a frustrating issue while trying to access specific settings through the Run dialog. For instance, if you type MS-Settings: (insert name) into the Run command (opened by pressing Win + R), you might see the error message: "No apps are installed to open this type of link." This article will address this problem and offer practical solutions to navigate the issue effectively.

Understanding the Problem

The original code you attempted to execute is structured like this:

MS-Settings: (insert name)

However, simply inserting the desired name does not guarantee access to the specific Windows settings. The error message you're encountering indicates that Windows is unable to recognize the command and lacks a default app to handle it.

Analyzing the Issue

This problem typically arises when the command syntax is incorrect or when the feature or application linked to that command has been uninstalled or corrupted. The MS-Settings URI (Uniform Resource Identifier) is designed to access various settings in Windows 10 and Windows 11 directly, but it must be used correctly.

Examples of Correct Usage

To use the MS-Settings command properly, ensure you're using a valid setting name. Here are a few examples of valid commands:

  • Open Bluetooth settings:
    MS-Settings:bluetooth
    
  • Open Network & Internet settings:
    MS-Settings:network
    
  • Open System settings:
    MS-Settings:system
    

If you replace (insert name) with one of these recognized setting names, the command should work without error.

Troubleshooting Steps

If you're still facing issues after using the correct syntax, consider these troubleshooting steps:

  1. Update Windows: Ensure your operating system is up to date as Microsoft regularly releases patches and updates that fix bugs.

  2. Re-register Windows Apps: Sometimes the default apps that handle settings commands may become corrupted. You can re-register these apps by running the following command in PowerShell with administrative privileges:

    Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
    
  3. Use Windows Settings Directly: If all else fails, you can access settings manually by navigating through the Start Menu:

    • Click on the Start Menu
    • Select Settings (the gear icon)
    • Find your desired category (e.g., System, Devices, etc.)
  4. Check System Files: If the issue persists, consider running the System File Checker to repair any missing or corrupted files. You can do this by entering the following command in Command Prompt:

    sfc /scannow
    

Conclusion

If you encounter the "No apps are installed to open this type of link" error while using the MS-Settings URI, don’t fret. With the proper syntax and a few troubleshooting techniques, you can quickly regain access to the Windows settings you need. Always ensure that your Windows operating system is updated and functioning correctly for the best user experience.

Useful Resources

By following these steps and utilizing the resources provided, you can resolve the issue effectively and improve your overall experience with Windows settings.