TOOL » WINDOWS
Expect
Example 
lua
local argument1 = arg[1]
local pass = "password"
if spawnctx("ssh", "server") then
  expect("password:")
  sendln(pass)
endRun with:
bat
expect sample arg1