0

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?

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
ismsm
  • 143
  • 2
  • 11

1 Answers1

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