Results 1 to 9 of 9

Thread: Best Auto Updater Program

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2008
    Posts
    50

    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?

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Best Auto Updater Program

    VB what? VB6? VB.NET?

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Best Auto Updater Program

    Here is what I found on Google.

  4. #4
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Best Auto Updater Program

    Quote 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.

  5. #5

    Thread Starter
    Member
    Join Date
    Feb 2008
    Posts
    50

    Re: Best Auto Updater Program

    I searched on google lol , alot good programs but most those are patching type deals :d. Its the latest vb Also Rhino thanks for the help i will study up on the clickone deployment .

    Edit: I am having problems with it lol i dont get how to set it up and i dont want to ruin my program can someone help me set i up?) My im is Removed By Mod
    Last edited by Hack; May 17th, 2008 at 05:26 AM. Reason: Removed EMail and IM Addresses

  6. #6
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    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.

  7. #7

    Thread Starter
    Member
    Join Date
    Feb 2008
    Posts
    50

    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.

  8. #8
    Frenzied Member zuperman's Avatar
    Join Date
    Dec 2000
    Location
    Portugal
    Posts
    1,033

    Re: Best Auto Updater Program

    Here i take the idea to make my own autoupdater
    Help keep this forum clean: Remember to mark your thread as resolved · Search before you post · Remember to rate posts that help

    VS2010: Visual Studio 2010 Keybinding Posters
    · Service Pack 1
    Tools: GhostDoc - automatically generates XML documentation comments
    · NuGet package Manager · PowerCommands IDE extensions
    Source Control: ankhsvn - integration for SVN
    · Windows Shell Extension for Subversion

    Development Laptop: Intel Core i5 430M 2.26 GHz @ 2.53 GHz
    · 4096 MB, DDR3 PC3-8500F (533 MHz), Kingston · ATI Mobility Radeon HD 5470 · 15.6 @ 16:9, 1366x768 pixel, HD LED LCD

    I follow:
    JoelOnSoftware - A weblog by Joel Spolsky, a programmer working in New York City, about software and software companies
    ScottGu's Blog - Scott Guthrie works for Microsoft as the Product Manager of the .NET Framework
    Portugal-a-Programar - Portuguese Developers Community
    .NET Rocks! - is a weekly Internet audio talk show for .NET Developers.

    Programming Languages:
    C#
    · VB.NET · JAVA · PHP · Javascript
    Other:
    XML
    · HTML · CSS · JQuery · SQL



    *** Proudly Portuguese ***

  9. #9

    Thread Starter
    Member
    Join Date
    Feb 2008
    Posts
    50

    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
  •  



Click Here to Expand Forum to Full Width