deepak
deepak

Reputation: 349

Windows 8 application deployment without uploading to windows store?

i have developed a windows 8 application using visual studio express edition 2012, i want to install that application on a windows 8 tablet

i dont want to upload the application to windows store, it is only for a group of people,how will install the app packages in the windows 8 tablet

please help

Upvotes: 2

Views: 627

Answers (1)

Filip Skakun
Filip Skakun

Reputation: 31724

Go to the Store menu and select "Create App Packages" (or similar - I am doing it in full VS, I think it should be similar in Express). Create a package and select an option to not save it to the store. When it is done - you should get a link to a folder where the package is saved together with a PowerShell script to install it. Just copy the whole package to a machine where you want to deploy it and run the script on that machine.

This is a developer option that requires typing in your free developer account credentials on the test machine, but might be easier than the other option of enterprise sideloading, which I am not too familiar with.

Upvotes: 3

Related Questions