Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Use VB Script to Automate UT Login
Message
 
À
Tous
Information générale
Forum:
Level Extreme
Catégorie:
Autre
Titre:
Use VB Script to Automate UT Login
Divers
Thread ID:
00320576
Message ID:
00320576
Vues:
24
Here's a VB Script that will log you into the UT automatically. Save it as a textfile named UTLogin.vbs. Click on the file, and it will launch IE, and log you in to the UT.
' UTLogin.vbs

Set oIE = CreateObject("InternetExplorer.Application")

oIE.Visible = True

oIE.Navigate("www.levelextreme.com")

while oIE.Busy:  wend  ' wait for page to load...

oIE.Document.All("Key").value="YourUserNameHere"

oIE.Document.All("Password").value="YourPasswordHere"

oIE.Document.Forms(0).Submit
kenweber
GCom2 Solutions
Microsoft Certified Professional

Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform