Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install a Windows 8 App Without Submitting to Store [closed]

For a customer I need a to present our Windows 8 Metro App. When I deploy my solution or project, I get a exe but I can't install it. I get a MessageError, that I can only start the exe in a app container.

How can I create a version of my application to give it to my customer without loading it up to the Microsoft Store?

like image 665
Matapolo Avatar asked Sep 20 '12 12:09

Matapolo


People also ask

Is Windows 8.1 store closed?

It is shut down for Windows 8. Beginning in July 2019, the Windows 8 Store is officially closed. While you can no longer install or update applications from the Windows 8 Store, you can continue using those already installed.

Does Microsoft Store still work on Windows 8?

When you're connected to the Internet, Windows 8.1 clients obtain updates to Microsoft Store apps directly from the Microsoft Store app. The Microsoft Store app is visible on the Windows Start screen.


1 Answers

Use the PowerShell cmdlet add-appxpackage. For example:

add-appxpackage C:\myapp.appx 

See http://blogs.msdn.com/b/uk_faculty_connection/archive/2012/04/03/installing-enterprise-metro-apps-without-using-microsoft-store.aspx for more info.

like image 166
akton Avatar answered Oct 02 '22 14:10

akton