I know this is probably not a total answer but I use an IE window to display progress and during my script I write out to the window, that way I can identify where I am up to
If you wnat to try it I have placed the code below:
Set objExplorer = WScript.CreateObject("InternetExplorer.Application"
Dbreak = "<br>" & "<br>"
Sbreak = "<br"
objExplorer.Navigate "about:blank"
objExplorer.ToolBar = 0
objExplorer.StatusBar = 0
objExplorer.Width=400
objExplorer.Height = 200
objExplorer.Left = 0
objExplorer.Top = 0
Do While (objExplorer.Busy)
Wscript.Sleep 200
Loop
objExplorer.Visible = 1
objExplorer.Document.Body.InnerHTML = "The Release File copy process is about to Start, a message will be displayed on completion" & Dbreak
I call this very early on within my script as a sub and then during my script I place the following line
objExplorer.Document.Body.InnerHTML = objExplorer.Document.Body.InnerHTML + "more infor on what is happening" & Dbreak
This way I can keep track.
Regards
Steve