Hi all
I am using WScript.Shell in order to execute a batch file that runs a few commands with a large output that is redirected to a local text file.
When execution is finished, I read the text file and update a scrolling DIV on my html page with the output from the batch file.
Something like this:
Thing is, this takes a long time and until the execution is finished, I cannot follow the log file to see what's going on.
My question is :
Is there anyway I can dynamically update my div with the content of the growing text file ?
Any suggestions will be great !
Thanks
I am using WScript.Shell in order to execute a batch file that runs a few commands with a large output that is redirected to a local text file.
When execution is finished, I read the text file and update a scrolling DIV on my html page with the output from the batch file.
Something like this:
Code:
Cmd="%comspec% /c script.bat > c:\output.txt"
Exec=WshShell.Run(Cmd,0, true);
fso = new ActiveXObject("Scripting.FileSystemObject");
ts = fso.OpenTextFile("C:\\output.txt", 1);
msg = ts.ReadAll();
var output = document.createElement('font');
output.innerHTML=msg;
div.appendChild(output);
My question is :
Is there anyway I can dynamically update my div with the content of the growing text file ?
Any suggestions will be great !
Thanks
Comment