Skip to content
Follow
Windows

How to Launch Microsoft Store Apps with URI in Windows 11

Richard
Written by
Richard
Jun 4, 2023 Updated Jul 14, 2026 3 min read
How to Enable or Disable Closing Warnings in Windows Terminal
How to Enable or Disable Closing Warnings in Windows Terminal

Microsoft Store apps in Windows 11 can be opened using their specific URI scheme, which is like a special web address for each app. This URI tells Windows exactly which application to launch.

For example, the Windows 11 Calculator app uses the simple URI `calculator:`. Think of it as a direct shortcut that lets you skip opening the Start Menu.

You can use these app URIs with tools like the Run dialog box (press Windows key + R) to open apps instantly. Many built-in Windows 11 apps, including Settings, have their own URIs.

Using these app shortcuts helps you access programs quicker and can be very handy for automating simple tasks on your PC.

⚡ Quick Answer

Launch Microsoft Store apps using their URIs in the Run dialog (Windows Key + R), Command Prompt, or PowerShell. Type the URI directly, or use “start” before it in Command Prompt. For example, use `calculator:` to open the Calculator app.

How to use URI commands

Launching Microsoft Store apps with a URI command is possible directly from the Run dialog, Command Prompt, or File Explorer address bar.

📝Note
Most commands do not need special permissions. However, some system-level tools may require you to run your command prompt with Admin Privileges.

Troubleshooting Launch Failures

If you’re having trouble launching Microsoft Store apps using a URI, begin by checking a few common issues. First, ensure the app you want to open is installed on your computer. Next, check for typos in the URI string, as even small mistakes can prevent it from working. Finally, verify the app hasn’t been disabled in Windows settings.

  • Ensure the app is installed on your system.
  • Check for typos in the URI string.
  • Verify the app is not disabled in the Windows Registry under 🗝️HKEY_CURRENT_USER\Software\Classes.
  • If the app fails to open, try using PowerShell with the Start-Process command.

Advanced Automation: PowerShell and Batch Scripts

Automate app launching using batch files. To do this, create a text file, add your command inside, and save it with a `.bat` extension. For more advanced control, consider using PowerShell:

💻Code
Start-Process "calculator:"

How to find your AppUserModelID

📝Good to Know
If a standard URI does not work, you may need the AppUserModelID. Open PowerShell as an administrator and run this command:

The command shows you all your installed apps and their unique AppUserModelIDs. You can then use these AppUserModelIDs to launch specific app versions through shell commands.

List of App URI Commands

  • Available Networks: ms-availablenetworks:
  • Calculator: calculator:
  • Settings: ms-settings:
  • Microsoft Store: ms-windows-store:
  • Windows Security: windowsdefender:

Reference: Microsoft Official Documentation

Summary

URIs are simple text shortcuts for launching Microsoft Store apps. By using the Run dialog, Command Prompt, or automation scripts, you can open apps instantly. This method improves your workflow and helps troubleshoot app launch issues effectively.

Can I launch Microsoft Store apps from a desktop shortcut?

Yes. Right-click your desktop, select New, then Shortcut. In the location box, type the URI (e.g., calculator:). Click Next, name your shortcut, and click Finish. You can now launch the app by double-clicking this icon on your desktop anytime.

Why does my app URI command return an error?

Errors usually occur if the app is uninstalled, the URI is typed incorrectly, or the protocol handler is corrupted. Ensure the app appears in your Start menu. If it still fails, try resetting the app via Settings or check if your system policy restricts launching apps via command line.

Can I launch apps automatically on Windows startup?

Yes. You can add your URI command to a batch script and place that file in the Windows Startup folder. Press Windows Key + R, type shell:startup, and press Enter. Move your shortcut there to have the app launch automatically every time you log into your computer.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Use Snipping Tool's Text Actions in Windows 11
Windows How to Use Snipping Tool's Text Actions in Windows 11
How to Change Browser Theme in Microsoft Edge
Browsers How to Change Browser Theme in Microsoft Edge
How to Manage OneDrive Photos in Microsoft Photos App
Windows How to Manage OneDrive Photos in Microsoft Photos App
How to Repair Microsoft Edge in Windows 11
Windows How to Repair Microsoft Edge in Windows 11

2 Comments

Leave a Comment

Your email address will not be published. Required fields are marked *