( ) - . , XML , :/AppVersion_[AppID].xml. XML / , , , MD5. , .
XML . , .
, XML, MD5 . , - .
VB6 VB.NET :
1) .NET BCL, WebClient, URL- , . , WebClient .
2) XML - .
- VB.NET, :
Dim TargetRemoteSetupFile As String = "http://www.bungalowsoftware.com/downloads.asp?programlist=/download/aphasia_tutor_1_and_2_outloud_install.exe"
Dim LocalDownloadPath As String = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "BungalowSoftwareInstall.exe")
Dim FileDownloaderWebClient As New System.Net.WebClient()
Try
FileDownloaderWebClient.DownloadFile(TargetRemoteSetupFile, LocalDownloadPath)
Catch ex As Exception
System.Diagnostics.Debugger.Break()
'...
Finally
FileDownloaderWebClient.Dispose()
End Try
System.Diagnostics.Process.Start(LocalDownloadPath)