Hello all. I am trying to run a very simple vb script to run a vpn client and then start landesk
Set objShell = CreateObject ("WScript.Shell")
objshell.Run "ipsecdialer.exe"
WScript.Sleep 15000
objshell.Run "LDISCN32.EXE /NTT=LIMPKIN:5007 /S="LIMPKIN" /I= /noui /sync"
I get this error :
Script: script name
Line: 4
Char: 50
Error: Expected end of statement
Code: 800A0401
Source: Microsoft VBScript compilation error
This is my very first script attempt. Can anyone point me in the right direction? Thanks in advance
Set objShell = CreateObject ("WScript.Shell")
objshell.Run "ipsecdialer.exe"
WScript.Sleep 15000
objshell.Run "LDISCN32.EXE /NTT=LIMPKIN:5007 /S="LIMPKIN" /I= /noui /sync"
I get this error :
Script: script name
Line: 4
Char: 50
Error: Expected end of statement
Code: 800A0401
Source: Microsoft VBScript compilation error
This is my very first script attempt. Can anyone point me in the right direction? Thanks in advance