I have some scripts using the built-in telnet option. In each one there's a declaration for user and password to access the device. Any idea or advice on how to implement some kind of variable for the credentials? If the user or password change all the scripts have to be manually modified.
Example:
'Retrieve system info via Telnet
'This example code can be adapted to work
'with any device that supports the protocol
'Set credentials
user = "user1"
pass = "user1_password"
'Create internal Telnet object
set objTelnet = Internal.CreateObject("Telnet")