VKontakte.DJ
forum traveling
 

Celestial Software

...better by design

Home Support Scripting Home Script Examples VBScript example: automatic login

VBScript example: automatic login

E-mail Print

The following script uses two command (WaitFor and SendText) to perform the bare minimum tasks required to perform a scripted login. 

This script could go in the login script location in Options->Properties->Scripts section if this script is specific to the session file you currently have open.  It could also go in Options->Properties->Global as the global login script if all of your logins are always performed the same.  To implement in your environment, make sure that the 'WaitFor' Functions are waiting for the proper strings.  Login prompts vary somewhat from system to system.

Sub Main
Terminal.WaitFor("login:")
Terminal.SendText("myusername"+vbNewLine)
Terminal.WaitFor("Password for")
Terminal.SendText("mypassword"+vbNewLine)
End Sub

The drawback to the script above is that if the login prompts never come, the script waits forever!  A smarter login script might resemble the script below.  It implements a fixed amount of time to wait for the prompts, then uses the return code of the Wait to determine whether or not to proceed.  The VBScript MsgBox function is used to alert the user to possible problems. 

Sub Main
DIM success
success = Terminal.WaitForTimeout ("login:" ,5000)
if  success = TRUE   then
  Terminal.SendText("myusername"+vbNewLine)
  success = Terminal.WaitForTimeout("Password:", 5000)
  if success then
    Terminal.SendText("mypassword"+vbNewLine)
  else
    MsgBox "Timed out waiting for password prompt"
  end if
else
  MsgBox "Timed out waiting for login prompt"
end if
End Sub

 

Related Links: VBScript API , Scripting Home

Last Updated on Friday, February 27, 2009 01:04 am  

Recent Forum Posts

info in Secure Shell by bpence, Jan 29, 2024 09:01 am
info in Secure Shell by bpence, Nov 20, 2023 09:43 am
info in Secure Shell by bpence, Nov 17, 2023 09:44 am
info in AbsoluteTelnet General by bpence, Nov 14, 2023 06:55 am
info in Configuration issues by taa1, Nov 05, 2023 04:26 pm
Once again I will tell you your product is excellent... I use it with FreeBSD and Linux (RedHat) and have had nothing but joy. -- Penny Rand - Seattle, WA