Last active
July 17, 2025 07:47
-
-
Save mike2718/27a7b2cc8e884988128d99c6f64b3e88 to your computer and use it in GitHub Desktop.
Soundmodem软件批量下载批处理
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| cd /d "%~dp0" | |
| mkdir soundmodem | |
| cd soundmodem | |
| curl -fROL http://uz7.ho.ua/binar2.zip | |
| curl -fROL http://uz7.ho.ua/hydrat.zip | |
| curl -fROL http://uz7.ho.ua/beesat1.zip | |
| curl -fROL http://uz7.ho.ua/genesis200.zip | |
| curl -fROL http://uz7.ho.ua/dora.zip | |
| curl -fROL http://uz7.ho.ua/gmskusp.zip | |
| curl -fROL http://uz7.ho.ua/geoscan27.zip | |
| curl -fROL http://uz7.ho.ua/fskax25.zip | |
| curl -fROL http://uz7.ho.ua/apps/checkers6.zip | |
| curl -fROL http://uz7.ho.ua/apps/chess10.zip | |
| curl -fROL http://uz7.ho.ua/apps/easyterm49.zip | |
| curl -fROL http://uz7.ho.ua/modem_beta/greentnc.zip | |
| curl -fROL http://uz7.ho.ua/modem_beta/hs_soundmodem27.zip | |
| curl -fROL http://uz7.ho.ua/modem_beta/other-versions.zip | |
| curl -fROL http://uz7.ho.ua/modem_beta/ptt-dll.zip | |
| curl -fROL http://uz7.ho.ua/modem_beta/soundmodem114.zip | |
| curl -fROL http://uz7.ho.ua/modem_beta/utils.zip | |
| curl -fROL http://uz7.ho.ua/trisatr.zip | |
| curl -fROL http://uz7.ho.ua/hsusat.zip | |
| curl -fROL http://uz7.ho.ua/hsusat9600.zip | |
| curl -fROL http://uz7.ho.ua/eirsat.zip | |
| curl -fROL http://uz7.ho.ua/gaspacs.zip | |
| curl -fROL http://uz7.ho.ua/ax100nocrc32.zip | |
| unzip -o binar2.zip -d binar2 | |
| unzip -o hydrat.zip -d hydrat | |
| unzip -o beesat1.zip -d beesat1 | |
| unzip -o genesis200.zip -d genesis200 | |
| unzip -o dora.zip -d dora | |
| unzip -o gmskusp.zip -d gmskusp | |
| unzip -o geoscan27.zip -d geoscan27 | |
| unzip -o fskax25.zip -d fskax25 | |
| unzip -o soundmodem114.zip -d soundmodem114 | |
| unzip -o hs_soundmodem27.zip -d hs_soundmodem27 | |
| unzip -o other-versions.zip | |
| unzip -o greentnc.zip -d greentnc | |
| unzip -o trisatr.zip -d trisatr | |
| unzip -o hsusat.zip -d hsusat | |
| unzip -o hsusat9600.zip -d hsusat9600 | |
| unzip -o eirsat.zip -d eirsat | |
| unzip -o gaspacs.zip -d gaspacs | |
| unzip -o ax100nocrc32.zip -d ax100nocrc32 | |
| cd .. | |
| del /q 2>nul soundmodem-backup.zip | |
| zip -r soundmodem-backup.zip soundmodem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment