AutoHotkey INI Files 5 – Auto Update Script to Newest Version On All Work Computers

AutoHotkey INI Files 5 – Auto Update Script to Newest Version On All Work Computers

HomeOther ContentAutoHotkey INI Files 5 – Auto Update Script to Newest Version On All Work Computers
ChannelPublish DateThumbnail & View CountActions
Channel AvatarPublish Date not found Thumbnail
0 Views
Lets use an INI file to force a script to update to the most current version at work.

CODE:
SetWorkingDir %A_ScriptDir%
vernow=1.2
settimer, UpdateCheck, 25000
Return

UpdateCheck:
IniRead, current, version now.txt, version, current
If vernow = %current%
{
msgbox, You are still current
}
else
{
run, autoupdate%current%.ahk
exitapp
}

Please take the opportunity to connect and share this video with your friends and family if you find it useful.