windows-phone-8-emulator

VisualStudio 2013 Express phone emulator - device not found

拜拜、爱过 提交于 2019-11-30 18:58:35
Step1: Installed VisualStudio 2013 Express for Windows along with Update 2. Step2: Created a blank Windows Phone App. Step3: Deployed the app to the Emulator 8.1 WVGA 4 inch 512MB. The Emulator Displays with the message 'Windows Phone is Starting'. Times out after about 5 minutes with the following error messages: Error: DEP6100: The following unexpected error occurred during bootstrapping stage 'Connection to the device': Error: DEP6200: Bootstrapping 'Emulator 8.1 WVGA 4 inch 512MB' failed. Device cannot be found. App deployment failed. Please try again. Hyper-V Manager shows the phone

What does it take to run the Windows Phone 8 emulator?

戏子无情 提交于 2019-11-30 13:55:58
问题 With the release of Windows Phone 8 finally out there, we finally have access to the SDK. I've heard that it requires special hardware or something for the emulator though. What are the system requirements for the phone emulator? 回答1: You need Windows 8 x64 Pro or Enterprise, Visual Studio 2012 (or the express edition from the SDK) and CPU supporting SLAT for running Hyper-V - WP8 emulators are running as Hyper-V virtual machines. (In other words no Linux, or Macs with processors older than

Windows Phone 8.1 Emulator not proxying through Fiddler

 ̄綄美尐妖づ 提交于 2019-11-30 12:34:01
问题 I've just started looking into Win Phone 8.1 and playing with proxying some data via Fiddler from the emulator but it doesn't seem to want to play ball. All the guidance around Phone 7 and 8 (not 8.1) seems to be that the emulator will route traffic as you'd expect other apps on the machine talking HTTP to do but I'm not seeing it happen. For example, Eric's post here: http://blogs.msdn.com/b/fiddler/archive/2010/10/15/fiddler-and-the-windows-phone-emulator.aspx There are no filters applied.

Alternatives to Hyper-V to run the Windows Phone emulator

与世无争的帅哥 提交于 2019-11-30 08:02:33
问题 I recently bought a Windows 8 laptop just for the sake of developing Windows Phone Apps. Mine is not a Pro version hence Hyper-V does not run. (I realized that Hyper-V needs WinPro after I bought the laptop). I am not capable of upgrading to pro edition. Can anyone please suggest me any alternatives to Hyper-V where my emulator can run? Thanks. 回答1: you can use a virtual machine to deploy windows phone 8 OS. My laptop processor does not support hyper-v so, I've installed win phone 8 on a

Unable to start the Windows Phone Emulator

一个人想着一个人 提交于 2019-11-30 06:53:20
I've seen this error several times. Each time I google deeply and finally made me reinstall my windows and all stuffs. Please help, I don't want to reinstall everything again. The error is: Windows Phone Emulator Unable to start the Windows Phone Emulator Windows Phone Emulator is unable to start because the hypervisor is not running. The likely cause is that hardware-assisted virtualization is not enabled. Check your computer's BIOS to ensure that hardware- assisted virtualization and hardware-assisted data execution features are enabled. But yesterday I debugged really normally on Windows

the windows phone emulator wasn't able to connect to the windows phone operating system

ぐ巨炮叔叔 提交于 2019-11-30 05:43:38
问题 this message occurred when i run my APP "the windows phone emulator wasn't able to connect to the windows phone operating system : The phone didn't respond to the connect request . some functionality may be disabled." after searching i found this answer " Open Hyper-V Manager Left column, left click on your computer name Select Virtual Switch Manager Select the Windows Phone Emulator Switch Click on the remove button on the right side of the window. launch the emulator Accept the elevation of

Visual Studio 2013 Windows Phone Emulator not deploying

霸气de小男生 提交于 2019-11-30 04:16:08
问题 I am using VS 2013 express and i have a Windows Phone 8 simple app. When i start debugging the App using any Emulator it fails to deploy the XAP into the emulator. AFter 10 minutes an error message shows up "There were depoyment errors. Continue?" This is the output while debugging the app: Adding WMAppManifest.xml 1> Xap packaging completed successfully Deploy started: Project: MyProject, Configuration: Debug Any CPU Deploying C:\Source\WidowsPhone8\MyProject.App\Bin\Debug\MyProject_Debug

VisualStudio 2013 Express phone emulator - device not found

南楼画角 提交于 2019-11-30 03:12:30
问题 Step1: Installed VisualStudio 2013 Express for Windows along with Update 2. Step2: Created a blank Windows Phone App. Step3: Deployed the app to the Emulator 8.1 WVGA 4 inch 512MB. The Emulator Displays with the message 'Windows Phone is Starting'. Times out after about 5 minutes with the following error messages: Error: DEP6100: The following unexpected error occurred during bootstrapping stage 'Connection to the device': Error: DEP6200: Bootstrapping 'Emulator 8.1 WVGA 4 inch 512MB' failed.

Windows Phone Emulator not working

五迷三道 提交于 2019-11-30 02:54:36
When I try to start debugging my windows phone 8 app in Emulator WVGA 512MB the following error message is showing The Windows Phone Emulator wasn't able to connect to the Windows Phone operating system: The emulator couldn't determine the host IP address, which is used to communicate with the guest virtual machine. Some functionality may be disabled. and the emulator is always showing The Windows Phone OS is starting... Can't understand what's the problem. Please advice. This worked for me (found here ): follow the following steps to solve this problem 1.go to network and sharing center 2.go

Adding a song into music in the Windows Phone Emulator in Visual Studio 2012

和自甴很熟 提交于 2019-11-29 18:06:52
I am using Visual Studio 2012 and Windows Phone 8.0 SDK. I want to add a song to Music in the emulator for debugging. How can I achieve this? Copy a Happy.mp3 file in your project Assets folder Add the file to the project: and set the Happy.mp3 Properties : Then run this code to copy the song to the MediaLibrary. Uri file = new Uri("Assets/Happy.mp3", UriKind.Relative); //copy file to isolated storage var myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication(); var fileStream = myIsolatedStorage.CreateFile("someSong.mp3"); var resource = Application.GetResourceStream(file); int