You are here

portable apps menu (autoupdater)

2 posts / 0 new
Last post
dragon2611
Offline
Last seen: 16 years 11 months ago
Joined: 2007-02-24 12:06
portable apps menu (autoupdater)

Can i suggest an autoupdater for the portable apps menu be added to options.

Would be nice if possible if there was an option underneath install a new app that said check for updates and that could then update installed apps without having to go though and manually redownload updated versions of each app.

Nerd
Offline
Last seen: 14 years 11 months ago
Joined: 2006-03-29 17:50
Helpful Auto-it Script
$FileURL = ""
$FileName = ""
$FileSaveLocation = FileSaveDialog("Save Location...",@ScriptDir,"All (*.*)",18,$FileName)
$FileSize = InetGetSize($FileURL)
 
InetGet($FileURL,$FileName,0,1)
 
ProgressOn("","")
While @InetGetActive
	$Percentage = @InetGetBytesRead * 100 / $FileSize
	ProgressSet($Percentage,"Downloaded " & @InetGetBytesRead & " of " & $FileSize & " bytes","Downloading " & $FileName)
	Sleep(250)
Wend
ProgressOff()
 
MsgBox(0, "Done","Download Complete!")
Log in or register to post comments