I will be on an VMware training next week. 🙂 Course Description: This hands-on training course explores installation, configuration, and management of VMware vSphere™, which consists of ESXi and vCenter Server. The course is based on ESXi 5.0 and vCenter Server 5.0. Completion of this course satisfies the prerequisite …
Read More######################################################################################################## # Steps to use the script: # # 1st: create a folder on an shared datastore # # 2nd: adjust the content of the variable $FolderName to the name of the folder created in step 1 # # 3rd: adjust the content of the …
Read MoreVMware released the 1st information about the new upcoming vSphere5 including an new license model. vSphere 5 Overview vSphere 5 Pricing A full review of vSphere 5 will follow later as I’m currently very busy with our vSphere 4.1 environment and the development of an fully automated management/support system.
Read MoreScript to create a report about the VMware Tools status: Sample Output: Total VMs: 527 Total powered on: 474 Total powered off: 53 ToolsOK: 140 ToolsOld: 227 ToolsNotInstalled: 106 DisConnect from Virtual Center Set-PSDebug -Strict $VIServer = "VCENTERIP" Connect-VIServer -server $VIServer -User USERNAME …
Read MoreFirst you need to connect to a vCenter: Connect-VIServer -Server VCENTERIP -User USERNAME -Password PASSWORD Get-VMHost | Sort | Select Name, @{N="FC Device";E={[string]::Join(",",(($_ | Get-View).Config.StorageDevice.HostBusAdapter | where{$_.GetType().Name -eq "HostFibreChannelHba"} | …
Read MoreThis is a small function to rename the local datastore of a fresh installed ESXi server from datastore1 to SERVERNAME-local. $ServerIP="192.168.4.3" function renameds { $vmHost = Get-VMHost -Name $ServerIP $dsname = $vmHost + "-local" Get-Datastore -Name datastore* | Set-Datastore -Name $dsname }
Read MoreThis is a small scriptlet to copy the ResourcePools (just the ResourcePools no settings or VM’s) of Cluster1 to Cluster2 Connect-VIServer -server VCENTER-IP -User USERNAME -Password PASSWORD $respools = Get-ResourcePool -Location CLUSTER1 foreach ( $respool in $respools ) { Write-Host $respool New-ResourcePool …
Read MoreThis script node will open a small window with a drop down menu with all your VM’s listed. Select one and click on OK. The script will collect some information and then display them. Script node: if ($global:defaultviservers) { #Generated Form Function function GenerateForm { …
Read MoreIf you force problems with reconfigure HA on a ESXi server in a HA Cluster. A possible solution to resolve this is to uninstall the vpxa and the ha-agent. This can be done using the unsupported mode. Steps: set ESXi in Maintenance Mode disconnnect ESXi from Virtual Center remove ESXi from Virtual Center connect with …
Read MoreWe found the root cause for our PSOD. VMs with a VRAM setting higher then 30MB. VMware KB: 1011971 Workaround: – find all virtual machines with VRAM settings higher then 30MB – shutdown these VMs and reconfigure the VRAM settings (<30MB) - start VMs
Read More