Friday, January 2, 2015

How to enable Hyper-V on a VM running on VMware Player

Shut down the virtual machine.

Enable VT-x/EPT in your virtual machine.

Modify the vmx file associated with the virtual machine. (Should be inside VM folder.) Add the following lines to the end of the VMX file.

  • hypervisor.cpuid.v0 = “FALSE”
  • mce.enable = “TRUE”

Power up the virtual machine.

Enable remote management on a Server Core installation

Open a Command Prompt and run below commands. It will enable emote management.

netsh advfirewall firewall set rule group="Windows Management Instrumentation (WMI)" new enable=yes

netsh advfirewall firewall set rule group="remote event log management" new enable=yes

Getting started with DevOps

A good read https://medium.com/@devfire/how-to-become-a-devops-engineer-in-six-months-or-less-366097df7737 *** Disclaimer! This post is ...