4
4
4upik2019-03-21 15:22:24
VBScript
4upik, 2019-03-21 15:22:24

How to write a URL discovery script in VBScript?

Not familiar with this language is it really necessary to just simulate the opening of the URL in order for this URL to start?
Can you help?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Victor L, 2019-03-21
@4upik

url.vbs file

Set ie = WScript.CreateObject("InternetExplorer.Application")
 
'ie properties
ie.ToolBar = 1
ie.StatusBar = 0
ie.Width = 800
ie.Height = 600
ie.Visible = 1
Do While ie.Busy: Loop
'navigate to content filter page
ie.Navigate("https://kas23.ru/")

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question