How can I run a Windows 8 phone app in an emulator outside of Visual studio 2013?

How can I run Windows Phone 8.1 application in emulator without opening visual studio 2013.

The following failed:

http://gauravmahajan.net/2013/02/06/launch-windows-phone-8-emulator-without-launching-visual-studio-2012/

The emulator opens, but the emulator only opens the default OS home page.

+3


source to share


3 answers


use Windows Phone Power Tools on codeplex to load your .xap into emulator.



https://wptools.codeplex.com/

+1


source


This is because the emulator uses a disk image on disk to store local data such as installed applications. You need to add a parameter /creatediffdisk %path_to_the_diif_image%.vhd

. Visual Studio stores these folders C:\Users\User\AppData\Local\Microsoft\XDE\8.1

.

My advice is to start the required emulator with Visual Studio and use any task manager like Process Explorer to copy the command line. Then you can create a shortcut.



Hope this helps :)

0


source


If you have Visual Studio installed, you can run applications (.xap, .xappx files) using the Windows Phone 8.1 Application Deployment tool.

Open it by simply knocking over "Deploy Windows Phone 8.1 Applications" in the search box (Windows-Logo + Q).

0


source







All Articles