如何在Powershell上捕获OpenSSH输出?

时间:2018-08-27 07:48:48

标签: powershell ssh openssh

我在PowerShell脚本上使用OpenSSH SSH进入FreeBSD服务器。我回显了单词“ Hello”,并且想要将返回的Hello捕获到PowerShell变量中。我该怎么办?

$ssh = New-Object -ComObject shell.Application;
$ssh = Start-Process -NoNewWindow ssh user@192.168.19.230
$wshell = New-Object -ComObject wscript.shell;
sleep 1
$wshell.SendKeys('echo Hello')
$wshell.SendKeys('{Enter}')

我尝试过$output = $wshell.SendKeys('{Enter}'),但没有任何帮助。 我搜索了将输出捕获到文件的方法,但没有成功。

0 个答案:

没有答案