Reputation: 107
How does one start a process or program simultaneously?
Such as to open 5 notepads with one cmdlet?
Upvotes: 1
Views: 2841
Reputation: 11254
You can do this via Start-Process, examples and docu can be found here.
Start-Process
1..5 | % { Start-Process notepad.exe}