- Login to the vcenter server
- Locate & poweroff virtual machine
- Click on “Summary”tap
- Click on “Edit settings”
- Click on “options”
isolation.tools.copy.disable
FALSE
isolation.tools.paste.disable
FALSE
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.
Continue reading “Vcenter how to create a role which have only permission to do vmotion”
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*”}
$bkpdate=get-date
$bkpdate.ToShortDateString()
[string]$strday=$bkpdate.Day
[string]$strmonth=$bkpdate.Month
[string]$stryear=$bkpdate.year
$strfolder=$strday+$strmonth+$stryear
Backup-DhcpServer -Path C:\dhcpbackup\$strfolder
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.