noutters over in the
XYplorer Forum posted this cool AutoHotkey script. Modify it to suit your own upgrade needs!
________________________________________________
This AutoHotkey script will download the lastest beta of XYplorer and upgrade it on your machine. Enjoy!;-------------------Start of script-------------------------
#SingleInstance,Force
#Persistent
SetBatchLines,-1
UrlDownloadToFile,
http://www.xyplorer....0_beta_noinstall.zip, c:\temp.zip
MsgBox,1,,Kill XYplorer process and upgrade?
IfMsgBox,Cancel
Return
IfWinExist, XYplorer
WinKill
; The following line should be changed according to the program you use to unzip your files
RunWait, E:\_Utilities\7za.exe e -y -o"C:\Program Files\XYplorer\" c:\temp.zip
;Uncomment and change the path of UPX if you want to compress the files in the XYplorer directory
;RunWait, c:\upx.exe -9 -f *.*,C:\Program Files\XYplorer
FileDelete, c:\temp.zip
run, C:\Program Files\XYplorer\XYplorer.exe
ExitApp
Return
;-------------------End of script-------------------------