I was trying to integrate putty using UiPathTeam.SSHConnector.activities, I have passed all the values in SSH Connector Scope except passprase key for that particular private key as i don’t find the option in the properties.
Could anyone suggest how i can make the option enabled, as i don’t have good knowledge on C# to overwrite the source code,
Also please suggest any other way for putty integration if possible. @Sorin_Calin
Ensure you are using the latest version of the UiPathTeam.SSHConnector.activities package. Developers may have addressed the issue in recent updates.
Open Manage Packages in UiPath Studio.
Check for updates to the UiPathTeam.SSHConnector.activities package.
2. Use OpenSSH with Command Line
You can use the plink or ssh command-line utilities instead of the SSH Connector activities. These utilities allow you to specify a private key and passphrase.
Pass the necessary parameters from UiPath to the script.
4. Consider Alternative SSH Libraries
If you need a more comprehensive solution:
Use the Renci.SshNet library in a custom C# implementation. Although you mentioned limited C# knowledge, this approach may provide full control over SSH features.
Hire a developer or collaborate with someone to create a reusable library activity.