HiperLogic

Virtualization, High Performance Computing, Healthcare IT, Enterprise Computing

March 2012

You are currently browsing the monthly archive for March 2012.

Sometimes you want a quick report of all the VMs, where their disks are, and what those names are in disk.

This is a quick PowerCLI script that reports VM Name, datastore, name on disk

Connect-VIServer -Server youvcserverhere

$myVMs = get-vm

foreach($vm in $myVMs){
    $myDisks = @($vm | get-harddisk)
    foreach ($disk in $myDisks) {
       write-host $vm.Name, ( $disk|select -ExpandProperty Filename)
    }
}

You can download PowerCLI at http://www.vmware.com/go/powercli

Tags:

We recently posted our AzureBlobUtility on BitBucket as open source that is utilized by our TotalCAE tools.

This Azure utility allows you to easily integrate legacy applications into Azure by enabling you to PUT, GET, DELETE, and LIST files in Azure storage. It builds on the original AzureBlobCopy.

You can get the code at

$ hg clone https://bitbucket.org/hiperlogic/azureblobutil

Enjoy!

-Rod

Tags: ,

© 2006-2010 HiperLogic, LLC.  |  Serving the Ann Arbor, Southeast Michigan, and Ohio region  |  (888)-268-3930  |