I'm looking for something like this -- https://ftp.mozilla.org/pub/firefox/releases/latest/README.txt
https://totalcommander.ch/win/tcmd-latest-beta-64.exe
https://totalcommander.ch/win/tcmd-latest-stable-64.exe
...
Static direct link to LATEST beta exe-intaller
Moderators: Hacker, petermad, Stefan2, white
Static direct link to LATEST beta exe-intaller
OS: Win10 | TC: latest x64
- ghisler(Author)
- Site Admin
- Posts: 50541
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Re: Static direct link to LATEST beta exe-intaller
Sorry, there isn't - I would most probably forget to update this for new beta versions. 

Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Re: Static direct link to LATEST beta exe-intaller
2KozakMak
You may like this .bat file:
(This PowerShell needs at least Win7 or newer)
Or you can use CURL to instead of powershell:
(on W10/W11 you always have preinstalled CURL)
Save it as tc1100x32_64_b1.cmd and change red colored (numbers and "b"/"rc") to download any version you wish.
You can see that the name of <name>.cmd file defines wich <name>.exe should be downloaded.
You may like this .bat file:
(This PowerShell needs at least Win7 or newer)
Code: Select all
@powershell -Command "(New-Object Net.WebClient).DownloadFile('https://www.totalcommander.ch/beta/%~n0.exe', '%~n0.exe')"
(on W10/W11 you always have preinstalled CURL)
Code: Select all
@curl "https://www.totalcommander.ch/beta/%~n0.exe" --remote-name --referer "https://www.ghisler.com/" --remote-time -#
You can see that the name of <name>.cmd file defines wich <name>.exe should be downloaded.
Last edited by MaxX on 2023-05-05, 17:00 UTC, edited 14 times in total.
Ukrainian Total Commander Translator. Feedback and discuss.
Re: Static direct link to LATEST beta exe-intaller
Or you can use CURL with no need to change numbers for each beta/rc of the same version:
Save it as .cmd file with any name you wish.
This will download the x32+64 version. You can remove "32_64" to download all available setup versions.
Code: Select all
@for /f tokens^=1-3^ delims^=^" %%i in ('@curl.exe "https://www.ghisler.com/1100_beta.htm" -# ^| @FINDSTR /IRC:"href.*tc.*x32_64.*exe"') do (@curl.exe "%%j" --remote-name --referer "https://www.ghisler.com/" --remote-time -#)
This will download the x32+64 version. You can remove "32_64" to download all available setup versions.
Ukrainian Total Commander Translator. Feedback and discuss.
Re: Static direct link to LATEST beta exe-intaller
2ghisler(Author)
i always think that those links generated automatically with some script on server...
2MaxX
2nd one is pretty sexy)
i always think that those links generated automatically with some script on server...
2MaxX
2nd one is pretty sexy)
OS: Win10 | TC: latest x64