Disable/enable copy/paste for Virtual machine

 

 

  1. Login to the vcenter server
  2. Locate & poweroff virtual machine
  3. Click on “Summary”tap
  4. Click on “Edit settings”

clip_image001

  1. Click on “options”

  1. Select “General”& Click on “Configuration Parameters”

clip_image002

  1. Add below mentioned two parameters

isolation.tools.copy.disable

FALSE

isolation.tools.paste.disable

FALSE

clip_image003

Advertisement

Vcenter how to create a role which have only permission to do vmotion

With vcenter we can create and assign permission levels. This guide will describe how to create a role, which only can do the vmotion of virtual machine/s. We can gather required permission from vmware virtual machine administration guide.

  1. Open vcenter
  2. Go to the roles

clip_image001

  1. Right click and select “Add”

Continue reading “Vcenter how to create a role which have only permission to do vmotion”

Powercli find all the vms which are having more than one disks

Using below two power cli lines we can easily find out virtual machines on the vcenter, which are having more than one hard disks.we can use same command with different parameter for find the virtual machines with other multiple hardware devices(ex two nics)

Connect-VIServer vc2.mobilab.local
get-vm | Where-Object {$_.harddisks -like “*2*”}

VMware workstation how to simulate SSD

Vmware vsphere environment, there are some features we need to have SSD disks to enable those features.(Vsan, host cache, etc..). But in a test environment its very difficult to use ssd disks because its very costly thing and we are using some virtualization software like vmware workstation.

But in a vmware workstation we can simulate ssd disks with esx host. Below are the steps for that.

  1. This is the virtual machine(esx), which will used to simulate SSD

clip_image001

  1. I want to simulate this 100GB disk as a SSD

 


clip_image002

  1. We have to edit vmx files

clip_image003

  1. We have to add below highlighted key in the vmx files. We should use correct disk id

clip_image004

  1. Now I can see that 100 GB disk as SSD.

Continue reading “VMware workstation how to simulate SSD”