- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is this from the PowerCLI prompt or a GUI ?
Could it be that the console width is too small ?
Try
Get-VM | Get-NetworkAdapter | Select @{N="VM";E={$_.Parent.Name}},Name,Type,WakeOnLan | fl
This will display the requested properties in a list format (Format-List).
Or you could diminish the width of the columns
Get-VM | Get-NetworkAdapter | Select @{N="VM";E={$_.Parent.Name}},Name,Type,WakeOnLan | ft -Autosize
And you could also try
Get-VM | Get-NetworkAdapter | Select @{N="VM";E={$_.Parent.Name}},Name,Type,WakeOnLan | Out-Default
Blog: lucd.info Twitter: @LucD22 Co-author PowerCLI Reference