Hello there,
I’m creating batch script for myself which will be downloading fresh builds of my must-have Windows software. It’s supposed to be simple script which will work on fresh installation so I’m using wget binary to acquire installer exe’s, and since Sumatra doesn’t provide (or maybe?) always up-to-date direct link to latest release, like “SumatraPDF-latest-64-install.exe”, how am I supposed to achieve this?
For example when it comes to VLC, they have latest build directory and DL directory listings are available for public so I was able to use wildcard like this:
.\wget.exe -r -np -nc -nd -A ‘vlc-*-win64.exe’ https://…/vlc/last/win64/
So how can I download Sumatra in the way like this? I know there are tools like Ninite but I want to achieve this the basic way.