Keybinder help
Wie haue ich eine Update Funktion in den Keybinder rein?
Keybinder help
Wie haue ich eine Update Funktion in den Keybinder rein?
Hi,
So müsste es gehen
version := 1.0
UrlDownloadToFile, // Downloadlink hier hin ;)
FileRead, newver, versionsupdate.txt
FileDelete, versionsupdate.txt
if (version < newver)
{
newververfügbar := 1
MsgBox, 4,, Es ist eine neuere Version Verfügbar, Version %newver%. Möchten Sie diese herunterladen?
IfMsgBox, Yes
{
MsgBox, 64, Update, Das Update wird heruntergeladen`,dies kann bis zu 10 Sekunden dauern..., 3
Urldownloadtofile, // <-- Hier kommt der Download Link hin ;)
BatchFile=
(
Ping 127.0.0.1
Del "%A_ScriptName%"
Rename "%A_ScriptName%.new" "%A_ScriptName%"
cd "%A_ScriptFullPath%"
"%A_ScriptName%"
)
FileDelete,update.bat
FileAppend, %BatchFile%,update.bat
MsgBox, 64, Update, Das Update wird ausgeführt...bitte warten..., 3
Run,update.bat,,hide
Exitapp
}
}else{
newververfügbar := 0
FileDelete,update.bat
}
Gruß
In AHK
In Autohotkey ist es so wie Sound geschrieben hat
Hö ich check das nicht bin ein Anfänger