Tuesday, March 22, 2011

Install VMware Tools without a reboot.


Get-VM | Where {$_.PowerState -eq "PoweredOn" -and $_.Guest.OSFullName -match "Win*"} | % {Update-Tools -VM $_ -NoReboot}
#(Found this on ICT-freak.nl)