Quote:
Originally Posted by berdmann
Hi GuitarDude,
You can get the IP address of the connected session using the RemoteAddress property of the Session object from SecureCRT's scripting API.
For Example:
Code:
# $language = "VBScript"
# $interface = "1.0"
strRemoteAddress = crt.Session.RemoteAddress
Set shell = CreateObject("WScript.Shell")
shell.Run("http://" & strRemoteAddress)
Does that work for you?
For more information about SecureCRT's scripting API please refer to the Help.
|
This does work for me. Thanks for the help. I did change a few things like https and adding the port number.