Use the ICIClientSettings interface GetSSHKeyID method to view the SFTP (SSH) certificate ID for the client. Refer to User Connection Protocols for an illustration of how this and other Client Settings Interface Methods and Properties can be accessed in the Administrator interface.
Signature:
HRESULT GetSSHKeyID(
[out, optional] VARIANT_BOOL *pInherited,
[out, retval] long *pVal);
Example:
Dim strUser:strUser = "test"
set oUserSettings = oSite.GetUserSettings(strUser)
Dim iSSHKeyID: iSSHKeyID = oUserSettings.GetSSHKeyID()
WScript.Echo (iSSHKeyID)