Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone Emulator not starting

When I run the emulator from the VS13 hangs self in "Windows Phone OS is Starting" but in Hyper-v manager is running properly and then keep getting two errors

Error : DEP6200 : Boostrapping 'Emulator 8.1 WVGA 4 inch 512MB' failed. Device cannot be found. App deployment failed. Please try again.

Error : DEP6100 : The following unexpected error occurred during boostrapping stage 'Connecting to the device': SmartDeviceException - App deployment failed. Please try again.

Help!

like image 726
Christopher Avatar asked Jul 25 '14 15:07

Christopher


2 Answers

  1. Repair the Visual Studio
  2. Download and install this emulator (Microsoft Emulator - Windows 10.0.26624) https://go.microsoft.com/fwlink/p/?LinkID=619310
like image 176
Mcore8x Avatar answered Sep 27 '22 17:09

Mcore8x


The solution is removing a duplicated route.

  1. List item
  2. Run "cmd.exe" as administrator
  3. Type "route print"
  4. If you see two identical routes from 169.254.0.0 like here:

Persistent Routes:
Network Address  Netmask      Gateway Address  Metric
169.254.0.0      255.255.0.0  192.168.1.47     1
169.254.0.0      255.255.0.0  192.168.1.44     1
  1. (b) Then remove both routes with "route delete 169.254.0.0"
  2. Remove Hyper-V (go to "programs and features")
  3. Restart system
  4. Install Hyper-V
  5. Restart system

Now you can deploy and debug your windows phone project on the emulator.

like image 27
IngoGrebe Avatar answered Sep 27 '22 19:09

IngoGrebe