hyper-v

Windows 10 - VS 2015 - Unable to Start Hyper-V Based Emulators within VMWare Workstation 11 VM

你。 提交于 2020-01-02 08:33:43
问题 I am unable to start any of the the Hyper-V emulators (VS Android Emulator or any of the Windows Phone Emulators) when operating within a VMWare Workstation version 11 virtual machine. Attached is how I have configured my VM underlying BIOS. Also attached is the message I receive when attempting to start any of the emulators. Hyper-V is installed and the Hyper-V management service is installed and started. 回答1: You need to allow nested running of one virtual machine (Hyper-V) inside the other

How to run the Windows Phone 10 Emulator?

故事扮演 提交于 2019-12-30 18:08:33
问题 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

How to acces transparently Linux container from Windows host LAN with Docker Desktop / Hyper-V / MobyLinuxVM

不羁的心 提交于 2019-12-25 18:36:47
问题 How to acces transparently Linux container from Windows host LAN with Docker Desktop / Hyper-V / MobyLinuxVM ?? My wish : A Windows 10 host with LAN on subnet 169.254.0.0 Linux containers (Docker Desktop 18.09.1 / Hyper-V / MobyLinuxVM) Linux containers in the same LAN as Windows host No NAT between Windows host and Linux containers (transparent network) Shared directory between Linux containers and Windows host 回答1: After one week of investigations on how to acces transparently Linux

Running Android emulator Hyper-V based on a Azure VM Windows Server 2016

柔情痞子 提交于 2019-12-24 19:01:07
问题 Our goal is to run UI tests with Appium on our CI build. But it seems that running the Android emulator (Hyper-V based) within virtual build machine (Windows Server 2016) on Azure might not be supported. So my question is, does Hyper-V based nested virtualization is supported from a Windows Server 2016 virtual machine on Azure ? note: using a CPU Android emulation is not an option 回答1: Yes, it is possible, you need to be on Dv3 or Ev3 SKU. https://docs.microsoft.com/en-us/azure/virtual

Windows Server 2008 Hyper-V on x86 processor

时光总嘲笑我的痴心妄想 提交于 2019-12-24 18:56:23
问题 I notice there are two version of Windows Server 2008 w/ Hyper-V available for download on the MSDN Subscription License site: Windows Server 2008 Datacenter, Enterprise and Standard (x64) Windows Server 2008 Datacenter, Enterprise and Standard (x86) I want to set up a development server for testing/developing using the Hyper-V software. According to the pre-requisites, you can only run Hyper-V on x64 based processor. Can a run Hyper-V on a x86 based processer? If not, why do Microsoft offer

What is Administered port exclusions in windows 10?

耗尽温柔 提交于 2019-12-24 12:34:52
问题 I have hyper-v enabled in windows 10. When I check the excluded ports, I get: C:\> netsh interface ipv4 show excludedportrange protocol=tcp Protocol tcp Port Exclusion Ranges Start Port End Port ---------- -------- 5357 5357 9800 9800 9801 9801 49671 49770 49871 49970 50000 50059 * 61117 61216 61220 61319 61902 62001 * - Administered port exclusions. Why Hyper-V reserves these ports? How Administered port exclusions ( ie, range 50000-50059 ) differ from other port exclusions? For example,

ErrOR 0x80072efd when sending an Http request to rest api on Windows Phone 8.1 Emulator

ぐ巨炮叔叔 提交于 2019-12-24 11:26:26
问题 I'm currently working on a Windows Phone 8.1 app, my first one actually. I would like to send through my emulator windows phone 8.1, a http request to a remote server. So I've used that code: try { mailToCheck.MailProfil = TxtBox_mail.Text.ToString(); string js = JsonConvert.SerializeObject(mailToCheck); HttpClient httpClient = new HttpClient(); httpClient.DefaultRequestHeaders.Add("Accept", "Application/JSON"); HttpRequestMessage data = new HttpRequestMessage(HttpMethod.Post, new Uri("url");

How to install minikube and docker in Windows 10?

China☆狼群 提交于 2019-12-24 10:37:27
问题 I want to work on minikube . I installed it successfully but I learned that in Windows 10 , I need to disable Hyper-v . Now , when I try to install docker , it needs Hyper-v enabled . I need both for work . Please suggest a way to make this happen . Appreciate your help . :) 回答1: You can achieve this by creating a new virtual switch in Hyper-V Manager for Minikube. Open the Hyper-V Manager (simple Windows search will find it) Select 'Virtual Switch Manager' Select 'New virtual network switch'

How to use USB over Remote Connection to a Virtual Machine

廉价感情. 提交于 2019-12-24 03:22:15
问题 I'm trying to do mobile application development (BlackBerry, Android) on a virtual machine. My idea is that no matter what desktop I'm on I can open a remote connection to the virtual machine and have my mobile development environment ready. The problem is that I would like to deploy code to the mobile device as if it were physically connected to the virtual machine. Ideally the devices will be plugged in to the client machine that is creating the remote connection. I'm currently using VMWare

Restart Hyper V machine using powershell cmdlet from C#

蹲街弑〆低调 提交于 2019-12-24 00:29:13
问题 I'm trying to build an app to restart VMs in Hyper V in Server 2012 I had each VM in the list restarting but i want to adapt it to turn the machine off and then back on. The commented code is the working forced resart. Thanks in advance. public async static void RestartAllVMs(List<VM> vmList, int timeDelay) { PowerShell ps = PowerShell.Create(); foreach (VM vm in vmList) { /*//Create PowerShell object PowerShell ps = PowerShell.Create(); ps.AddCommand("Restart-VM"); ps.AddArgument(vm.vmName);