I have been using a combination of Wget and Zenity to get a small gui
of my download progress but I like this one. My purpose of this is for
all of this to be automated and in the background. I run Wget and
Zenity in a batch file. Do you know of a way that I can kill the
visualwget.exe process after a download is complete? Wget is not
currently a problem because it ends after the download and I can then
run the file but I have to close this VisualWGet application somehow.
This is my current batch file but I do not know if there is a way to
determine when the file is complete.
Thanks
----
visualwget.exe --progress=bar:force
http://site/folder/file.exe --
directory-prefix="c:\windows\system32" 2>&1 | zenity.exe --window-
icon="icon.png" --progress --title="Downloading" --text="Progress Bar"
--auto-close --auto-kill
(need something here?)
taskkill.exe /F /IM visualwget.exe
"c:\windows\system32\file.exe"
exit