Resize Guest System Partition with PowerCLI

I recently needed to resize system partitions on several Windows 2008R2 virtual machines. To do this with Set-HardDisk the virtual machines must be powered off and you need a helper VM. I was looking for a way to do this without downtime, as that can be arranged when executing the steps manually (grow the disk, log into the guest, rescan disks and then extend the partition). I came up with the following workaround and thought it would be worth sharing. The idea is to set the hard disk to the new size with Set-HardDisk and then use Invoke-VMScript to run diskpart from within the VM. I included the -ResizeGuestPartition switch on Set-HardDisk as that appears to complete the task of re-scanning for disks within disk manager.

[cc lang=”powershell”]
$guestName=”newDiskTest”
$guestUser=”Administrator”
$guestPass=”Aw3s0m3pwd”
$newSizeGB=40

Get-HardDisk -vm “newDiskTest” |
?{$_.name -eq “hard disk 1”} |
Set-HardDisk -CapacityKB ($newSizeGB*1MB) -ResizeGuestPartition -GuestUser $guestUser -GuestPassword $guestPass -confirm:$false -ErrorAction:SilentlyContinue

Invoke-VMScript -vm $guestName -ScriptText “echo select vol c > c:\diskpart.txt && echo extend >> c:\diskpart.txt && diskpart.exe /s c:\diskpart.txt” -GuestUser $guestUser -GuestPassword $guestPass -ScriptType BAT
[/cc]

Posted in Scripting, Virtualization | 4 Comments

vSphere High Performance Cookbook

vSpere High Performance Cookbook

I’ve been working on a little side project recently — reviewing a book for Packt Publishing.  This process has given me a new respect for authors and the process behind writing a book.  The book – vSphere High Performance Cookbook – has been published and you can check it out here: http://bit.ly/14sDuyk.

Here is an overview of the book:

  • Troubleshoot real-world vSphere performance issues and identify their root causes
  • Design and configure CPU, memory, networking, and storage for better and more reliable performance
  • Comprehensive coverage of performance issues and solutions including vCenter Server design and virtual machine and application tuning
Posted in Virtualization | Leave a comment

Script to ping a list of computer names

A few weeks ago, I co-worker asked for a script to ping a list of computer names. I thought I had one on my blog, but couldn’t find it. I decided to post a copy here to make it easier to find in the future. This is very simple, and doesn’t do any sort of multithreading, but for a short list it will get the job done pretty quick:

[cc lang=”powershell”]
$ping = New-Object system.net.networkinformation.ping
Get-Content someComputerList.txt | %{
try {$results = $ping.Send($_).Status } catch { $results = $false }
New-Object psobject -Property @{ Name=$_ ; Results=$results }
}
[/cc]

Posted in Scripting | Leave a comment

Reviewing DNS logs with PowerShell

I recently helped out on a project where DNS services were being moved to different hosts with new IP addresses. After updating the DHCP scope options and static DNS configuration settings on all servers, the team turned on DNS logging to look for any hosts still using the old DNS servers. The logs contained a lot more records than originally anticipated, so I wrote the following code to help summarize the logs.

This first block of code found all of the DNS queries that didnt come from domain controllers, manipulated the log file entry to get just the source IP and stored all the results in a collection named myResults.

[cc lang=”powershell”]
# Create a pipe separated list of domain controllers
$listOfDCs = “192.168.0.40|192.168.5.20|192.168.10.60”
$loopbackIPv6 = [regex]::Escape(“::1”)

$myResults = @()
Get-Content e:\dnslogs\dns.log | ?{$_ -match ‘ PACKET ‘ -and $_ -match “UDP Rcv ” -and $_ -notmatch $listOfDCs -and $_ -notmatch $loopbackIPv6} | %{
$sourceIP = (($_ -split(“UDP Rcv “))[1] -split(” “))[0]
$myResults += New-Object psobject -Property @{
SourceIP = $sourceIP
FullLine = $_
} # end new object
} # end dns log loop
[/cc]

Once we rearranged the data so that it would be more usable, we wanted to find the source IP addresses responsible for the majority of the lookups. The idea here is that once you resolve the issue with these hosts, you can recreate the DNS log file and the next pass through will contain fewer entries and therefor run faster. Using powershell this is a pretty quick one liner after you run the block of code above.

[cc lang=”powershell”]
$myResults | Group-Object -Property SourceIP | Sort-Object Count -Descending
[/cc]

That is helpful, but the team really wanted to know host name. Using the data from host naming convention, they could tell what team would be responsible for resolution of the issue. With just a few more lines of code we can easily return that information too.
[cc lang=”powershell”]
# Since server guys are more likely to know host names than IP address, we will loop through the resutls and
# lookup the host name, then sort the list to find the largest number of lookups
$myResults | Group-Object -Property SourceIP | Sort-Object Count -Descending | %{
$sourceName = try { [system.net.dns]::GetHostByAddress($_.Name).HostName } catch { “UNKNOWN” }
New-Object psobject -property @{
HostName = $sourceName
IP = $_.Name
Count = $_.Count
}
}
[/cc]

Posted in Scripting | Leave a comment

Powering on a virtual machine from the command line

I recently made a post about powering on virtual machines in bulk using PowerCLI. That process worked well to power on VMs in vCenter, but what if you need to turn on vCenter? In some cases (lockdown mode, firewall rules, etc) you may need to power on a VM from the tech support console of an ESXi host. vSphere has accountted for this through the use of vim-cmd commands in the local console. The first command will return the ID for each VM on a host. The second command accepts one of these IDs to execute a power on operation:

vim-cmd vmsvc/getallvms
vim-cmd vmsvc/power.on ##

VMware has a good KB article on the subject: 1038043 | Powering on a virtual machine from the command line when the host cannot be managed using vSphere Client.

Posted in Virtualization | Leave a comment