WebsGhost
WebsGhost

Reputation: 107

How to start multiple process in PowerShell

How does one start a process or program simultaneously?

Such as to open 5 notepads with one cmdlet?

Upvotes: 1

Views: 2841

Answers (1)

Moerwald
Moerwald

Reputation: 11254

You can do this via Start-Process, examples and docu can be found here.

1..5 | % { Start-Process notepad.exe}

Upvotes: 1

Related Questions