highball.se

Out of clutter, find simplicity

Archive for the ‘VMware’ Category

Enable Clipboard Copy and Paste in vSphere Client 4.1

First enable local or remote TSM from the vSphere Client on every ESXi host: Select the host and click the Configuration tab. Click Security profile > Properties. Click Local Tech Support or Remote Tech Support (SSH) and click Options. Choose the desired startup policy and click Start, then click OK. Verify that the daemon selected [...]

Linked: eagerZeroedThick powershell script

I found this great Powershell script that convert virtual disk files to eagered zeroed. Awesome script! I had to make some changes to make it work in my environment. function Set-EagerZeroThick{ param($vcName, $vmName, $hdName) # Find ESX host for VM $vmImpl = Get-VM $vmName Write-Host $vmImpl if($vmImpl.PowerState -ne “PoweredOff”){ Write-Host “Guest must be powered off [...]

Linked: Move-Template

A couple of days ago I found a really great PowerCLI script that move templates i vSphere. Awesome post and script by afokkema at ict-freak.nl! Storage vMotion is a great feature to Move your VMs to other datastores. But what if you want to move your Templates? In the current version of vSphere there is [...]

How I manually migrated from vCenter 4.0(32-bit) to 4.1u1(64-bit)

Last week I upgraded a vCenter 4.0 installation to 4.1u1. The vCenter was installed on a 32-bit VM so I needed to migrate the installation to a new 64-bit host. I tried to do the migration according to the vSphere 4.1 upgrade pre-installation requirements and considerations guide. But sadly I got an error during the [...]

Install VMware Tools on Trixbox

Recently I had to install VMware Tools on a Trixbox installation. 1. First, in the VMware console, run ‘install vmware tools’ in the menu 2. Mount the cd-rom drive in an empty folder: cd /media mkdir cdrom mount /dev/cdrom /media/cdrom cd /media/cdrom 3. Copy the .tar.gz file to somewhere such as /home & extract.. cp [...]

Fix slow/sluggish mouse in VMware Fusion

I have been experiencing that the mouse pointer in my VMware Fusion gets somewhat sluggish from time to time. It got slow for a second or two. Quite annoying. It turns out that this is caused by VMware Fusion attempts to “optimize mouse for gaming”. Totally useless in my opinion.. Just disable this in the [...]

How to speed up the vSphere 4 Client

Lately I’ve found that the my vSphere Client has been really slow. It turned out that deleting the following 2 registry keys does the trick: HKCU\Software\VMware\Virtual Infrastructure Client HKCU\Software\VMware\VMware Infrastructure Client Check out the original post here: Apparently, all the prior versions and settings get retained during updates / upgrades and seem to cause significant [...]