I want to open 1000 SSH sessions from remote server using PuTTY in Windows 10 for test purposes. How to do that in an easy way?
Asked
Active
Viewed 461 times
1 Answers
1
You can use a batch file like this:
for /l %%N in (1 1 1000) do putty.exe -load "your session"
Based on: How to execute one line multiple times using windows batch file?

Martin Prikryl
- 188,800
- 56
- 490
- 992