Results 1 to 13 of 13

Thread: Emcranks Auto Updater

Threaded View

  1. #1

    Thread Starter
    Fanatic Member Emcrank's Avatar
    Join Date
    Jan 2009
    Posts
    566

    Emcranks Auto Updater

    Updated: 17/7/2010 [16:18 - Saturday]
    Fixed writing permissions.

    --------
    Ok finally i have finished my auto updater - it updates by your app passing arguments to the updater.exe in a Process.Start, it cannot be opened by clicking on it, it just says the program has stopped working. For the program to recognise there is a new update you need to upload a new version.ini file onto the same link as its previous one(again you can do this with Fileden just set option to Overwrite) with a higher version number than before then when the program downloads the version.ini it checks if that version is higher than the .INI file on your computer and if this is true then it initiates update. On the internet you need links for a version.ini file(SEE BELOW FOR HOW IT SHOULD BE SET OUT) and your download link(a .zip or .exe DIRECT LINK). i suggest FileDen as it allows direct links for .zip(hardly any sites let you download a .exe) and this is what you need for this to work. First you need to obtain the updater.exe by building the project i have attached at the bottom. Then put the updater.exe in the directory of wherever your application is. Also you need to put code into your project in the specified places and change a few links.
    Code for your project
    Delete the #Region and #End Region parts and copy and paste the wherever the region says( Variables Go at the top not in a sub but inside the class )
    VB.NET Code:
    1. Imports System.Runtime.InteropServices
    2. Imports System.Text
    3.  
    4. #Region " VARIABLES "
    5.     Dim downloadedINIpath As String = "http://www.example.com/version.ini"
    6.     Dim fullpath1 As String = IO.Path.Combine(FileIO.SpecialDirectories.CurrentUserApplicationData, "settings.ini") 'Path of local .INI file
    7.     Dim fullpath2 As String = IO.Path.Combine(FileIO.SpecialDirectories.CurrentUserApplicationData, "version.ini") 'Path of downloaded .INI file
    8. Dim newUpdaterPath As String = IO.Path.Combine(FileIO.SpecialDirectories.CurrentUserApplicationData, "Updater.exe") 'Path of Updater.exe
    9.     Dim Version As String = My.Application.Info.Version.ToString 'DONT EDIT
    10. #End Region
    11.  
    12. #Region " ON FORM CLOSING "
    13.     Dim fullpath3 As String = IO.Path.Combine(FileIO.SpecialDirectories.CurrentUserApplicationData, "version.ini") 'Updates Path of downloaded .INI file
    14.     Dim fileExists As Boolean = My.Computer.FileSystem.FileExists(fullpath3)
    15.         If fileExists = True Then
    16.             My.Computer.FileSystem.DeleteFile(fullpath3, FileIO.UIOption.OnlyErrorDialogs, FileIO.RecycleOption.DeletePermanently) 'Clean up version.ini when app is shutdown
    17.         End If
    18. #End Region
    19.  
    20. #Region " ON FORM LOAD "
    21.  
    22. If My.Computer.FileSystem.FileExists(fullpath1) = False Then
    23.                 INIReadWrite.WriteINI(fullpath1, "settings", "version", Version) 'Write new local .INI file if it doesn't exist
    24.             Else
    25.                 If INIReadWrite.ReadINI(fullpath1, "settings", "version") <> Version Then
    26.                     INIReadWrite.WriteINI(fullpath1, "settings", "version", Version)
    27.                 End If
    28.             End If
    29.         If My.Computer.FileSystem.FileExists(IO.Path.Combine(FileIO.SpecialDirectories.CurrentUserApplicationData, "version.ini")) Then
    30.             My.Computer.FileSystem.DeleteFile(IO.Path.Combine(FileIO.SpecialDirectories.CurrentUserApplicationData, "version.ini"), FileIO.UIOption.OnlyErrorDialogs, FileIO.RecycleOption.DeletePermanently) 'If previous downloaded .INI file still exists then delete it
    31.         End If
    32.         My.Computer.Network.DownloadFile(downloadedINIpath, fullpath2) 'Download new .INI file
    33.         If INIReadWrite.ReadINI(fullpath2, "settings", "version") <> INIReadWrite.ReadINI(fullpath1, "settings", "version") Then 'Check the downloaded .INI file version against the local .INI files version
    34.             If MsgBox("A new update is available, do you want to update now?", MsgBoxStyle.YesNo, "New update") = MsgBoxResult.Yes Then 'If new update found, ask if they want to update now
    35.                 Try
    36.     Dim a1 As String = """http://www.example.com/myapp(.zip/.exe)""" 'Address of new program to download(Change this to yours(can be either .zip or .exe file extensions))
    37.     Dim a2 As String = """" & Application.StartupPath & """" 'Download it to the applications folder
    38.     Dim a3 As String = """" & My.Application.Info.AssemblyName & """" 'Gives updater the applications name
    39.     Dim a4 As String = a1 & " " & a2 & " " & a3
    40.                     Process.Start(newUpdaterPath, a4) 'Start the updater
    41.                 Catch ex As Exception
    42.                     Application.Exit() 'If cannot start for some reason, exit the program.
    43.                 End Try
    44.             End If
    45.         Else
    46.  
    47.         End If
    48. #End Region
    49.  
    50.     Class INIReadWrite
    51.  
    52.         <DllImport("kernel32.dll", SetLastError:=True)> _
    53.         Private Shared Function GetPrivateProfileString(ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As StringBuilder, ByVal nSize As Integer, ByVal lpFileName As String) As Integer
    54.         End Function
    55.  
    56.         <DllImport("kernel32.dll", SetLastError:=True)> _
    57.         Private Shared Function WritePrivateProfileString(ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpString As String, ByVal lpFileName As String) As Boolean
    58.         End Function
    59.  
    60.         Public Shared Function ReadINI(ByVal File As String, ByVal Section As String, ByVal Key As String) As String
    61.             Dim sb As New StringBuilder(500)
    62.             GetPrivateProfileString(Section, Key, "", sb, sb.Capacity, File)
    63.             Return sb.ToString
    64.         End Function
    65.  
    66.         Public Shared Sub WriteINI(ByVal File As String, ByVal Section As String, ByVal Key As String, ByVal Value As String)
    67.             WritePrivateProfileString(Section, Key, Value, File)
    68.         End Sub
    69.  
    70.     End Class
    How your version.ini file should look
    Code:
    [settings]
    version=1.0.0.0
    (Put whatever version you want here - if it is more than the one on your computer it will update)
    To Get the Updater.exe you need to BUILD the project(Not Debug, only build because it wont run as i said earlier in this post.)
    I have no problem with you using it in your project or whatever as long as you dont call it your own.
    Please give me some feedback as well on this as it took me a long time to make. Thankyou
    Attached Files Attached Files

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