
Search found 2 matches
- 05 Mar 2013 14:06
- Forum: DOS Batch Forum
- Topic: VBS who gets text from URL and put it in .txt
- Replies: 4
- Views: 4966
- 28 Jan 2013 05:45
- Forum: DOS Batch Forum
- Topic: VBS who gets text from URL and put it in .txt
- Replies: 4
- Views: 4966
VBS who gets text from URL and put it in .txt
So I have this code Dim document : Set document = WScript.GetObject("https://secure.wikimedia.org/") While document.readystate <> "complete" WScript.Sleep 200 Wend WScript.Echo document.documentElement.outerHTML which is getting to text/source from a link. Can somebody help me t...