Hello, does it exists a Software/Batch/Something for Windows OS that could access the web and download a file (like a xml) in a specified folder, recursively in time (like 1 time a day)?
A:
Yes, but you need to try and post any problems you run across. http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx
Dustin Laine
2010-06-08 16:25:23
A:
PowerShell:
PS Home:\> $wc = New-Object Net.WebClient
PS Home:\> $wc.DownloadFile( ... )
You can use the Task Scheduler to run it in specified intervals.
Joey
2010-06-11 00:31:56