Microsoft Virtualization Discussions

foreach

JSHACHER11
3,604 Views

why is this isn't working:

$volumes = Get-Content c:\vol_list.txt

foreach ($vol in $volumes) Get-NaVolAutosize $vol | select name,isenabled | ft

cheers

1 ACCEPTED SOLUTION

vinith
3,604 Views

I gues you missed the curly braces ?

$volumes = Get-Content c:\vol_list.txt

foreach ($vol in $volumes)

{

  Get-NaVolAutosize $vol | select @{l='VolumeName';e={$vol}},isenabled | ft

}

View solution in original post

3 REPLIES 3

vinith
3,605 Views

I gues you missed the curly braces ?

$volumes = Get-Content c:\vol_list.txt

foreach ($vol in $volumes)

{

  Get-NaVolAutosize $vol | select @{l='VolumeName';e={$vol}},isenabled | ft

}

JSHACHER11
3,604 Views

I guess you missed the curly braces ?

I guess I have..

cheers

JGPSHNTAP
3,604 Views

Joel - i'll dig around for something I wrote that will inventory all this in excel... and it will tell you the min and max

Public