
Description
Write a vbscript that does the following:
1) Runs ipconfig and logs the data in a text file.
2) Waits for 3 seconds
3) Reads the text file and displays the entire file contents on the screen
Submit your code and a screenshot of the output screen in a single word document.

Explanation & Answer

Code..
outfile = "C:\mor\out.txt"
errfile = "C:\mor\err.txt"
cmd = "cmd /c ipconfig /all >""" & outfile & """ 2>""" & errfile & """"
timeout = DateAdd("s",...
