I am just curious if there is a way to package up a Windows 8 Metro application to distribute it to others with the Windows 8 Developer Preview installed? It would be nice to be able to allow someone to just download and install, rather than requiring them to install VS'11 Preview and compile the code themselves in order to test out / use a Windows 8 Metro application that I've built.

Is there a way to distribute a compiled Windows 8 Metro application for others to test/use since the Windows Store is not yet live?

This would likely be useful for testing Metro apps on non-development machines even after the Windows Store is live.

link|improve this question

feedback

4 Answers

Each machine that wants to install the application will need a developer license. See this page for some details.

When you have your app ready:

  1. select Store->Create App Package
  2. Select Build a package to use locally only
  3. Follow the prompts

This will create a package in whatever folder you specified. You should be able to copy that to another developer-licensed machine and install it.

There will be a batch file called Add-AppxDevPackage in the directory. Running it will install the app. It must be run as an admininistrator.

link|improve this answer
1  
Very clear response. – Bob Riemersma Sep 21 '11 at 13:11
It would be better if you didn't need to run it As Administrator, but that's the only current option in Win8. – Chris Pietschmann Sep 24 '11 at 17:32
In that case, why develop metro apps at all? Aren't we better off staying with Native Apps only? Approvals and waiting in queue for release is certainly the reason people are shifting from iOS to Android, where else freedom to download/install and run anything on earlier and native windows did make more sense for enterprise. – Akash Kava Mar 1 at 17:53
Is it necessary to have access to Store? Would have been better if going to store could be avoided – Tilak May 8 at 14:31
feedback

If I recall correctly from the white paper, then a Windows 8 Metro application can only be installed by consumers from the App Store.

However there will be a way provider for developers (as explain by Stave Rowe) and a way for corporations to installed Windows 8 Metro application directly, I expect the corporation method will be by using Active Directory (group policy), but may be limited to some editions of Windows 8.

link|improve this answer
feedback

This is not correct answer to distribute apps locally, but we in team share the source code and deploy the app using Visual Studio.

I also tried http://peterdn.com/post/To-make-a-Metro-Appx-Package-from-scratch-you-must-first-e280a6.aspx but could not configure certificate appropriately and has to abandon that approach.

link|improve this answer
feedback

Distributing apps outside store is possible after complying to the prerequisites listed in this MSDN article. It also covers the process of application installation using PowerShell. Though it appears quite complicated, note that MSIs work fine for Windows 8 metro apps so you can probably enclose the installation process into one small instalator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.