|
-
May 15th, 2008, 06:48 PM
#1
Thread Starter
Member
Best Auto Updater Program
I was looking for an auto updater program that you can add an update.exe with your program that automatically checks to see what the latest version of the program is. I want it to do that rather then to be a patcher so the user never has to download anything more . Is there a free program like this that is free or if not free what programs are out there like this? Also besides the program is there a way to do this through vb itself? I know there is the one click fix stuff but how do u make that work?
-
May 16th, 2008, 06:21 AM
#2
Re: Best Auto Updater Program
-
May 16th, 2008, 06:31 AM
#3
Re: Best Auto Updater Program
Here is what I found on Google.
-
May 16th, 2008, 08:28 AM
#4
Re: Best Auto Updater Program
 Originally Posted by Hack
VB what? VB6? VB.NET?
Good question!
Anyway, you can do it yourself and it's ot that difficult.
If you are using VB.Net then lookup the ClickOnce Deployment
If you are using VB6 (or prior) then here is what you need to do:
1. Write small program (AutoUpdate.exe) that all it does is comparing local version (date/time perhaps) to a remote (new executable that is available somewhere on your LAN).
AutoUpdate will always run first - all shortcuts (if any) must point to that exe.
2 If remote file is newer then rename (or delete local file - but renaming is safer) and copy new file to a local drive
3. Lauch your main executable using Shell.
4. If you keep your new version on the FTP server then you will have to use INet control (or related api function) to download most recent version first.
You would then compare old vs new and proceed accordingly.
Good luck.
-
May 16th, 2008, 03:09 PM
#5
Thread Starter
Member
-
May 17th, 2008, 05:27 AM
#6
Re: Best Auto Updater Program
I have edited your post and removed your email/im addresses.
You should never post your email address in an open post on an open forum. Mail spam bots can pick that up and before you know it, your mailbox is full of junk mail. If you wish to share your email/im addresses with other forum members, please do so via our PM system.
In addition, we prefer all answers to questions be publically posted rather than sent via EMail or PM. That way, everyone with a similar problem can benefit.
Thanks.
-
May 17th, 2008, 12:01 PM
#7
Thread Starter
Member
Re: Best Auto Updater Program
Alright sorry about that. How would i set this up for my program? I am a beginner at vb and it is very difficult to understand.
-
May 17th, 2008, 12:21 PM
#8
Frenzied Member
Re: Best Auto Updater Program
Here i take the idea to make my own autoupdater
-
May 17th, 2008, 07:15 PM
#9
Thread Starter
Member
Re: Best Auto Updater Program
Thanks! I have looked at that code and tried it but don't get how to use it as it comes up with lots of errors for the module!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|