Welcome to the VanDyke Software Forums

Join the discussion today!


Go Back   VanDyke Software Forums > Scripting

Notices

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 02-20-2021, 06:40 AM
HappyHouse HappyHouse is offline
Registered User
 
Join Date: Feb 2021
Posts: 2
Error detecting in loop

Hello VanDyke team,

I´m a rookie in scripting an need help.
I´ve a small VBA Script using a loop to connect to several routers to request several coomands. This works fine. But sometimes a router is not reachable. in this case the loop stops with an error. What I need is that my script detects the problem (router not reachable) and go on with the next router in list.

Code:
#$language = "VBScript"
#$interface = "1.0"

crt.Screen.Synchronous = True

Sub Main

Dim objFileToRead, fileLocation, strLine, counter1

fileLocation = crt.Dialog.FileOpenDialog("Choose file")

Set objFileToRead = CreateObject("Scripting.FileSystemObject").OpenTextFile(fileLocation,1)

do while not objFileToRead.AtEndOfStream

strLine = objFileToRead.ReadLine()

	crt.Screen.Send "login " & strline & chr(13)
	crt.Screen.WaitForString "Password for xxxxxx: " 
	crt.Screen.Send "xxxxxxxx" & chr(13)
	crt.Sleep(3000)
	crt.Screen.WaitForString strline 
	crt.Screen.Send "sh ver " & chr(124) & " i uptime" & chr(124) & "System image" & chr(13)
	crt.Screen.WaitForString strline
	crt.Screen.Send "exit" & chr(13)
    crt.Screen.WaitForString "INFO:    Session closed", "2"

loop

objFileToRead.Close

Set objFileToRead = Nothing
crt.Dialog.MessageBox("Done !!")

End Sub
Reply With Quote
  #2  
Old 02-22-2021, 08:42 AM
bgagnon bgagnon is offline
VanDyke Technical Support
 
Join Date: Oct 2008
Posts: 4,636
Hi HappyHouse,

That's more a scripting language question than it is SecureCRT, but I will try to help.

The error handling mechanism in VBScript (which SecureCRT supports, not VBA, which is different) is the On Error Resume Next construct. The scripting manual has some info about using this mechanism in Chapter 3.6 Handling Connection Failures Within a Script.

The task you are trying to accomplish sounds really close to what is exemplified in this example script.
__________________
Thanks,
--Brenda

VanDyke Software
Technical Support
support@vandyke.com
(505) 332-5730
Reply With Quote
  #3  
Old 02-22-2021, 09:46 AM
bgagnon bgagnon is offline
VanDyke Technical Support
 
Join Date: Oct 2008
Posts: 4,636
Hi HappyHouse,

A colleague pointed out an optional parameter to Connect() method that might help you out, the bSuppressErrorPopups parameter.

Quote:
The Connect method also takes an optional parameter (True or False) that specifies whether or not to suppress pop-up messages. This parameter defaults to False (don't suppress).
VBScript Syntax:
object.Connect [strConnectInfo [, bWaitForAuthToComplete [, bSuppressErrorPopups]]]

__________________
Thanks,
--Brenda

VanDyke Software
Technical Support
support@vandyke.com
(505) 332-5730
Reply With Quote
  #4  
Old 02-22-2021, 12:51 PM
HappyHouse HappyHouse is offline
Registered User
 
Join Date: Feb 2021
Posts: 2
Hello Brenda,

thanks for quick response. Sorry for my imperfect wording, I meant VBScript.
Thanks also for your help for an issue a little bit outside of SecureCRT
The scripting manual was helpful after trying the examples several times with a few reconfigurations.
The further tips I will try soon.
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 03:35 PM.