Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
msgbox getoutput("C:\WINDOWS\SYSTEM32\find.exe /i /n ""Use Path:"" c:\winzip.log")
function getoutput(app)
Dim WshShell, oExec
Set WshShell = CreateObject("WScript.Shell")
'The "app" is launched
Set oExec = WshShell.Exec(app)
'wait for the end of the process
Do While oExec.Status = 0
Loop
'the command output flow goes to a string variable
Do While oExec.StdOut.AtEndOfStream <> True
str = str & trim(oExec.StdOut.ReadLine) & vbcr
Loop
getoutput = str
end function