title: Execute Multiple Files tags: powershell Call with arguments `-h -i -s -t` ``` ls *.exe | foreach { & $_ -h -i -s -t } Get-ChildItem *.exe | ForEach { & $_ ... } ```