My business has been putting out a lot of software, but I'd like to implement a program that checks for updates of our software so our clients are alerted and can then upgrade.
I was thinking of adding a text file on our servers that would display either 0 (no update available) or 1 (update available!) that a batch could read and copy out to a local file.
So I've now uploaded a file (check.txt) that contains just the number '1' and placed on my server. And that's where I've got stuck...
After searching the net, all I could come up with is the following for a batch file:
http://www.mysite/updates/check.txt > update_available.txt
Now, I'm sure I've done something wrong here, as all I'm getting is a blank .txt file.
I'm sure I've missed something crucial here, but despite my searching of the interweb, I simply can't find a solution.
Any ideas?