How can I add a progress bar to the following script. I'm trying to install all exe's in a directory. I would like it to say installing 1 of 3 and % complete. This is what I have.
$folder = "c:\myfolder" gci $folder *.exe | foreach { Start-Process $_.FullName -ArgumentList "/q /norestart" -wait -passthru }
Thanks