Do you have a code example? RENCI does it this way: Dim connInfo As New Renci.SshNet.PasswordConnectionInfo(My.Settings.ip, "root", My.Settings.password) Dim sshClient As New Renci.SshNet.SshClient(connInfo) Dim cmd As Renci.SshNet.SshCommand sshClient.Connect() cmd = sshClient.RunCommand("df -h") 'listet alle remoteFolders mit Name, Size, Used, Available, Use% und Mounted on sshClient.Disconnect() Roland 12/31/2021 9:19:10 AM | |
Ok, i got it. Thank you very much! Roland 12/31/2021 9:45:22 AM |