Quantcast
Channel: PowerShell General
Viewing all articles
Browse latest Browse all 10624

Aligning columns in Out-GridView

$
0
0

Hi Folks,
I've created a PowerShell script to display logical disk information on a local or remote computer.
Is it possible to right align a column in a grid?
I use PowerShell version 2.

param([string]$m=$env:ComputerName)Write-Host""Write-Host"Drive Information for $m"
$LD=Get-WmiObjectWin32_LogicalDisk-ComputerName $m -Filter"driveType=3"
$Size=@{Label="Size";Expression={"{0:N2} GB"-f ($_.Size/1GB)}}
$FreeSpace=@{Label="Free Space";Expression={"{0:N2} GB"-f ($_.FreeSpace/1GB)}}
$FreePercent=@{Label="Free %";Expression={"{0:P2} "-f ($_.FreeSpace/$_.Size)}}
$LD |Select-ObjectDeviceID,VolumeName,$Size, $FreeSpace, $FreePercent |Out-GridView-Title"Logical Drives on $m"

 


Viewing all articles
Browse latest Browse all 10624

Trending Articles