Automatic Updater #84
H-Tevin
started this conversation in
Show and tell
Replies: 2 comments 1 reply
-
I do have plans for impleminting a simple auto updater. Thanks for sharing you script! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for your work so far! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not great at coding, but I made a batch file to automatically update AutoActions. You have to download the zip yourself, but this will extract it, exit AutoActions, copy the new files over the old ones, restart AutoActions, then delete the zip. It doesn't take a ton of time to do yourself, but why do work if you don't have to?
Here's the full code:
@echo off
cd C:\Program Files\7-Zip
taskkill /F /IM AutoActions.exe
7z e "C:\Users"YOURNAME"\Downloads\Release_AutoActions_*.zip" -o"C:\Program Files\AutoActions" -y
del /f "C:\Users"YOURNAME"\Downloads\Release_AutoActions_*.zip"
"C:\Program Files\AutoActions\AutoActions.exe"
exit
Just change the paths to be the same as yours and it should work. You also need 7 zip installed.
It'd be cool if something like this could be implemented officially. Since AutoActions has access to the internet to check for updates, it might also have the capability to download the files too.
Also, if anyone could figure out a way to automatically run this when a new github zip is downloaded, that would be great. Right now it has to be run manually.
Edit: I switched everything over to AutoActions with the branding change (a much-needed change by the way. The app can do so much more than HDR, it was time for a name change).
Beta Was this translation helpful? Give feedback.
All reactions