Hi,
I have a pretty simple script that downloads some web pages and saves them to files ( that are processed by other script using FileRead ).
But sometimes after hours of running the script is blocked with 100% CPU usage and very high I/O usage too according to Process Explorer.
The script is like this:
Code:
#Persistent
SetTimer, diez, 600000
SetTimer, uno, 60000
GoSub, uno
GoSub, diez
return
uno:
UrlDownloadToFile, http://www.webone.com, fWebOne
UrlDownloadToFile, http://www.webtwo.com, fwebTwo
return
diez:
UrlDownloadToFile, http://www.anotherWeb.com, fanotherWeb
return
I don't know how to solve the problem or at least diagnostic it, any idea ?