My colleague asked me can I find out the VM name based on its UUID. I helped him by running a PowerCLI command: Get-VM | Foreach ($_) {If ((Get-View $_.id).config.uuid -eq "422041b7-8ccd-xxxx-xxxx-2770502e404a") {Write-host $_.name}} I was thinking why not build up a vCO workflow so they can help themselves in the future in case they … Continue reading vCO: Find VM name based on UUID
Author: Jackie Chen
vCO: List Virtual Machines with Snapshots
As a VMware administrator, making the VM snapshots under control is one of the critical tasks. I wrote up a ‘List all VM with snapshot’ workflow which generate a report showing the virtual machines that have snapshots. The key is in the scriptable task: vmWithSnapshots = new Array(); var vms = VcPlugin.getAllVirtualMachines(); var logtext; for(i … Continue reading vCO: List Virtual Machines with Snapshots
Login issue after updating to vCenter Server 5.1U1
You’d better read this before updating to vCenter Server 5.1 U1 Cannot log in to vCenter Server using the domain username/password credentials via the vSphere Web Client/vSphere Client after upgrading to vCenter Server 5.1 Update 1 (2050941)
MS Technical White Paper: Managing Windows 7 and Windows 8 Side-by-Side
This white paper discusses the planning, line-of-business application compatibility, imaging, security, and backend system considerations and experiences of the Microsoft IT team when managing desktop and laptop machines running Windows 8 and Windows 7 within the same corporate network. Many of the techniques and best practices described in this paper can be employed by other … Continue reading MS Technical White Paper: Managing Windows 7 and Windows 8 Side-by-Side
Puppet for Windows: Remote Execution
In this example, I am going to use Puppet to: - Create a Windows user and add it to the RDP group. - Add Web Server role. - Install McAfee VSE8.8. Before Following things need to done: 1) Install the Puppet agent in Windows, detailed instruction can be found here. 2) Create a batch script … Continue reading Puppet for Windows: Remote Execution