We have a very large environment therefore it takes around 5 mins to collect all of the VMs and store them into a variable. I need a way to display progress until this collection is complete. I figured a do until loop would work, however I cant quite figure it out.
This is the direction I was heading, not sure if its right though.
do {
write-host "."
$VMs = get-VM
}
while ($VMs.Count ++ )
My thought was it was write dots until the VMs count stopped, but this is not the case. Any help with would be greatly appreciated.