Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run the Windows Phone 10 Emulator?

I'm lost while searching how to start the Windows Phone 10 Emulator.

What I already did:
I downloaded the Emulator image and installed it (I know the location of the flash.vhd file)

I'm running Windows 8.1 x64 Professional. The Hyper-V service seems to be running. If I run coreinfo -v I get this output:

Coreinfo v3.31 - Dump information on system CPU and memory topology
Copyright (C) 2008-2014 Mark Russinovich
Sysinternals - www.sysinternals.com

Note: Coreinfo must be executed on a system without a hypervisor running for
accurate results.

Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
Microcode signature: 0000001A
HYPERVISOR      *       Hypervisor is present
VMX             -       Supports Intel hardware-assisted virtualization
EPT             -       Supports Intel extended page tables (SLAT)

Here is my MachineSLATStatusCheck output:

You have a SLAT capable machine.

I guess that my computer meets the hardware requirements, but how do I start the emulator?

By the way I have only VS 2012 installed, but I don't want to upgrade it. I just need the emulator for now.

like image 652
rekire Avatar asked Jul 18 '15 16:07

rekire


People also ask

Is there a Windows Phone emulator?

Microsoft Emulator is a desktop application that emulates a Windows 10 Mobile device when used in conjunction with Visual Studio 2015. It provides a virtualized environment in which you can debug and test universal windows apps without a physical device.

Can I run Windows 10 on a mobile phone?

Windows 10 Mobile is being made available to supported smartphones running Windows Phone 8.1.

Does Windows 10 have a built in emulator?

Microsoft is releasing its first Windows 10X emulator today, designed for dual-screen devices. The operating system is a variant of Windows 10 that has been adapted for new foldable and dual-screen hardware that's arriving in 2020 and beyond.


1 Answers

The emulator's executable is \Program Files (x86)\Microsoft XDE\xde.exe

Run it with /? to get help on the arguments.

Here's how (a slightly out of date) VS 2015 launches it for me (gleaned from procexp). Update this to your folders and options and it should launch the emulator from the command line:

"C:\Program Files (x86)\Microsoft XDE\10.0.1.0\XDE.exe" /name "Emulator 10.0.1.0 WVGA 4 inch 512MB.rob" /displayName "Emulator 10.0.1.0 WVGA 4 inch 512MB" /vhd "C:\Program Files (x86)\Windows Kits\10\Emulation\Mobile\10.0.1.0\Flash.vhd" /video "480x854" /memsize 512 /diagonalSize 4 /language 409 /creatediffdisk "C:\Users\Rob\AppData\Local\Microsoft\XDE\10.0.1.0\dd.480x854.512.vhd" /snapshot /fastShutdown

like image 79
Rob Caplan - MSFT Avatar answered Oct 03 '22 19:10

Rob Caplan - MSFT