Avatar of cpatte7372
cpatte7372
Flag for United Kingdom of Great Britain and Northern Ireland asked on

VBS Script Modification Pt5

Hello Experts,

The following script fails when it gets to the line 'crt.session.log True'. Its being used with an application called SecureCRT and its run on a number of tabs. Basically, the script will work fine on the first tab, but when it gets to another tab I get the error message CRT Scripting Runtime error, and then it says Logging already enabled.

I think its because script doesn't recognise that it should start afresh on a new tab.

I wonder if you could assist?

# $language = "VBScript"
# $interface = "1.0"
' SendToAll.vbs

Sub Main()
   
    if Not crt.Session.Connected then
        szSession = crt.Dialog.Prompt("Enter session:", "", "", False)
        if szSession = "" then exit sub
   
        crt.Session.ConnectInTab("/S " & szSession)
        crt.Session.ConnectInTab("/S " & szSession)
        crt.Session.ConnectInTab("/S " & szSession)
    end if
   
    arrCommands = Array("end", "term len 0")

    ' Send commands to all tabs
    ' Connect to each tab in order from left to right, issue all commands, and
    ' then disconnect...
    For nIndex = 1 to crt.GetTabCount
        Set objCurrentTab = crt.GetTab(nIndex)
        objCurrentTab.Activate
     
           
        If objCurrentTab.Session.Connected = True Then
            crt.Session.Log True
            For Each strCommand In arrCommands
                crt.Sleep 500
                objCurrentTab.Screen.Send strCommand & vbcr
           
                crt.Sleep 1000
            Next
        End If
    Next
End Sub
                                           

Cheers

Carlton
scripterror.jpg
Scripting Languages

Avatar of undefined
Last Comment
RobSampson

8/22/2022 - Mon
RobSampson

Not sure, but if logging *is* already started, you might be able to change this:
crt.Session.Log True

to this
If crt.Session.Log = False Then crt.Session.Log True

Rob.
cpatte7372

ASKER
Rob, thanks for responding, going to check it out now...
cpatte7372

ASKER
Rob,

Getting the follow error message...
error3.jpg
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
ASKER CERTIFIED SOLUTION
RobSampson

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
cpatte7372

ASKER
Hi Rob,

Thanks again for responding. I will check it out shortly and let you know.

Cheers

Carlton
cpatte7372

ASKER
Hi Rob,

Unfortunately, the script now only works on the firs tab, or should I say, 'it only works once', but doesn't work on other tabs. However, at least its not crashing this time.

I think we could be nearly there.....
cpatte7372

ASKER
Got it working cheers...
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
RobSampson

Thanks for the grade.  Would you mind explaining what you did to get it working?

Thanks,

Rob.
cpatte7372

ASKER
Hi Rob,

If it's ok I will show you tomorrow - about to hit the sack.

Cheers
RobSampson

Yeah, no problem. No rush.  It just helps others that may be having the same problem.

Rob.
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23