Pages: [1]
Print
Author Topic: List guests that have USB, Serial or Parallel devices  (Read 570 times)
esarakaitis
Administrator
Full Member
*****
Posts: 241


8223109 sack57@hotmail.com littleking57 rootinfortwayne
View Profile WWW Email
« on: January 13, 2009, 09:33:09 AM »

Code:
$VMs = Get-VM
foreach ($VM in $VMs){
$VM = Get-View $VM.ID
$HW = $VM.Config.Hardware.Device
foreach ($dev in $HW){
if (($dev.DeviceInfo.Label -like "Parallel Port *") -or
($dev.DeviceInfo.Label -like "Serial Port *") -or
($dev.DeviceInfo.Label -like "USB Port *"))
{
$dev | Select-Object @{Name="VM_Name"; Expression={$VM.Name}}, @{Name="Device"; Expression={$_.DeviceInfo.Label}}
}
}
}
Logged
Pages: [1]
Print
Jump to: