Hi,
if you plan to run an ESXi Host within an ESXi Host and enabling support for 64-bit for VMs some additional settings are requiered:
Continue reading VMware: x64 virtual machines within nested ESXi Hosts
Hi,
if you plan to run an ESXi Host within an ESXi Host and enabling support for 64-bit for VMs some additional settings are requiered:
Continue reading VMware: x64 virtual machines within nested ESXi Hosts
Hi,
when you want to execute your PowerCli script you have to start the “VMware vSphere PowerCLI” shell before. But, for example Schedule Tasks, it whould be nice that the script load the PowerCli environment itself. Then you simply have to start your script like this
%Systemroot%\System32\WindowsPowerShell\v1.0\powershell.exe -File YourPowerCliScript.ps1
To load the PowerCli script Environent in your powershell script add this lines at the top of your script.
Continue reading VMware: PowerCli Scripts in native Powershell
Hi,
linked clones have some advantages:
I found no option in the vSphere respective the Webclient to create one, but PowerCli provides this. Lets do it.
Connect to vCenter
Connect-VIServer vcenter.subdomain.domain.local
Define the virtual machine which is the origin of the linked clone, and the Snapshotname on which the linked clone based.
$sOriginVM="mastervm" $sOriginVMSnapshotName="mastervm_linkedclone_snap"
Continue reading VMware vSphere: Create a linked clone with Powercli
Hi,
other than the Workstation, VMware ESXi does not has the functionality to “NATting” virtual machines network traffic into a public network.
My approach to implement NAT is a virtual machine with a slimmed-down (Debian) Linux.
These virtual machine has two network interfaces. The first interface is connected to a vSwitch called “Public LAN” with access to the public LAN, the second interface is connected to a vSwitch which has no physical adapter attached to and is called “NAT Network”. On the NAT interface a DHCP server is assigning IP Addresses.
Continue reading VMware ESXi: Setting up NAT with a linux virtual machine
Hi,
to set a higher graphic resolution in Windows guest operating system do the following steps:
Decide which resolution should be available, in this example 1680×1050 and calculate Video RAM size (default Video RAM for Workstation 16777216, for ESX 4194304):
Continue reading VMware ESX, Workstation: Increase screen resolution on Windows Guests