This commit is contained in:
Michael H.G. Schmidt 2021-02-24 22:26:55 +01:00
parent 7b7342550e
commit d35c5fc81d
6 changed files with 65 additions and 40 deletions

View File

@ -74,6 +74,7 @@ GOTO END
:USAGE :USAGE
echo "usage: %0 <USBDRIVE>" echo "usage: %0 <USBDRIVE>"
echo.
:END :END

17
software/basic.csv Normal file
View File

@ -0,0 +1,17 @@
https://www.7-zip.org/a/7z1900-x64.exe 7z-setup.exe
https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
https://download.sysinternals.com/files/BGInfo.zip bginfo.zip
https://curl.se/windows/dl-7.75.0_3/curl-7.75.0_3-win64-mingw.zip curl.zip
https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe
http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip
https://www.deskmodder.de/blog/wp-content/uploads/2018/06/install-wim-tweak.zip installwimtweak.zip
https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe
https://www.nirsoft.net/utils/offlineregistryfinder-x64.zip offlineregistryfinder.zip
https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe openshell-setup.exe
https://the.earth.li/~sgtatham/putty/latest/w64/puttygen.exe puttygen.exe
https://downloads.rclone.org/v1.54.0/rclone-v1.54.0-windows-amd64.zip rclone.zip
https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_windows_amd64.zip restic.zip
https://www.tightvnc.com/download/2.8.59/tightvnc-2.8.59-gpl-setup-64bit.msi tvnc-setup.msi
https://ftp.nluug.nl/pub/vim/pc/vim82w32.zip vim.zip
https://winscp.net/download/WinSCP-5.17.10-Portable.zip winscp.zip
https://www.sordum.org/files/downloads.php?st-windows-update-blocker wub.zip
1 https://www.7-zip.org/a/7z1900-x64.exe 7z-setup.exe
2 https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
3 https://download.sysinternals.com/files/BGInfo.zip bginfo.zip
4 https://curl.se/windows/dl-7.75.0_3/curl-7.75.0_3-win64-mingw.zip curl.zip
5 https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe
6 http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip
7 https://www.deskmodder.de/blog/wp-content/uploads/2018/06/install-wim-tweak.zip installwimtweak.zip
8 https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe
9 https://www.nirsoft.net/utils/offlineregistryfinder-x64.zip offlineregistryfinder.zip
10 https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe openshell-setup.exe
11 https://the.earth.li/~sgtatham/putty/latest/w64/puttygen.exe puttygen.exe
12 https://downloads.rclone.org/v1.54.0/rclone-v1.54.0-windows-amd64.zip rclone.zip
13 https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_windows_amd64.zip restic.zip
14 https://www.tightvnc.com/download/2.8.59/tightvnc-2.8.59-gpl-setup-64bit.msi tvnc-setup.msi
15 https://ftp.nluug.nl/pub/vim/pc/vim82w32.zip vim.zip
16 https://winscp.net/download/WinSCP-5.17.10-Portable.zip winscp.zip
17 https://www.sordum.org/files/downloads.php?st-windows-update-blocker wub.zip

5
software/browser.csv Normal file
View File

@ -0,0 +1,5 @@
https://ftp.mozilla.org/pub/firefox/releases/85.0.2/win64/en-US/Firefox%20Setup%2085.0.2.msi firefox-setup.msi
https://addons.mozilla.org/firefox/downloads/file/3726657/1password_password_manager-1.23.1-fx.xpi 1password-addon.xpi
https://addons.mozilla.org/firefox/downloads/file/3714988/bitwarden_free_password_manager-1.48.1-an+fx.xpi bitwarden-addon.xpi
https://addons.mozilla.org/firefox/downloads/file/3719054/ublock_origin-1.33.2-an+fx.xpi ublockorigin-addon.xpi
https://addons.mozilla.org/firefox/downloads/file/3719726/privacy_badger-2021.2.2-an+fx.xpi privacybadger-addon.xpi
1 https://ftp.mozilla.org/pub/firefox/releases/85.0.2/win64/en-US/Firefox%20Setup%2085.0.2.msi firefox-setup.msi
2 https://addons.mozilla.org/firefox/downloads/file/3726657/1password_password_manager-1.23.1-fx.xpi 1password-addon.xpi
3 https://addons.mozilla.org/firefox/downloads/file/3714988/bitwarden_free_password_manager-1.48.1-an+fx.xpi bitwarden-addon.xpi
4 https://addons.mozilla.org/firefox/downloads/file/3719054/ublock_origin-1.33.2-an+fx.xpi ublockorigin-addon.xpi
5 https://addons.mozilla.org/firefox/downloads/file/3719726/privacy_badger-2021.2.2-an+fx.xpi privacybadger-addon.xpi

View File

@ -1,11 +1,22 @@
@echo off @echo off
set LISTFILE=softwarelist.csv
rem ===================
rem COMMANDLINE CHECKS
rem ===================
IF %1.==. GOTO USAGE
rem removing extension ...
set LISTFILE=%~n1
rem adding extension again ...
set LISTFILE=%LISTFILE%.csv
IF NOT EXIST %LISTFILE% ( IF NOT EXIST %LISTFILE% (
echo ERROR: %LISTFILE% not found! echo ERROR: %LISTFILE% not found!
exit /b exit /b
) )
echo using file [ %LISTFILE% ] ...
rem ################################### rem ###################################
rem MAIN loop ( download software ) ... rem MAIN loop ( download software ) ...
rem ################################### rem ###################################
@ -37,3 +48,15 @@ FOR /F "tokens=1,2 delims=, " %%E in (%LISTFILE%) do (
) )
) )
rem =====
rem END
rem =====
GOTO END
:USAGE
echo "usage: %0 <LISTFILE>"
echo LISTFILE = basic, browser or extended
echo.
:END

18
software/extended.csv Normal file
View File

@ -0,0 +1,18 @@
https://downloads.citrix.com/17900/CitrixReceiver.exe?__gda__=1613947274_e90f49e3cf249c33c18f3cce69ef0e61 citrixreceiver-setup.exe
https://github.com/sqlitebrowser/sqlitebrowser/releases/download/v3.12.1/DB.Browser.for.SQLite-3.12.1-win64-v2.msi dbbrowser-setup.msi
https://www.emclient.com/dist/v8.1.1060/setup.msi emclient-setup.msi
https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi
https://download.sp.f-secure.com/SE/Retail/installer/F-SecureNetworkInstaller-AV.exe f-securenetworkinstaller-av_avtr20f930_.exe
https://golang.org/dl/go1.16.windows-amd64.msi go-setup.msi
https://dl.google.com/drive/gsync_enterprise64.msi gsync-setup.msi
https://www.python.org/ftp/python/2.7.18/python-2.7.18.amd64.msi python-setup.msi
https://www.softmaker.net/down/ofw2021_64.msi softmaker-setup.msi
http://www.drivesnapshot.de/download/snapshot64.exe snapshot64.exe
http://download.spotify.com/SpotifyFullSetup.exe spotify-setup.exe
https://statics.teams.cdn.office.net/production-windows-x64/1.4.00.2879/Teams_windows_x64.exe teams-setup.exe
https://totalcommander.ch/win/fixed/tcmd951x64.exe tcmd-setup.exe
https://ftp.halifax.rwth-aachen.de/videolan/vlc/3.0.12/win64/vlc-3.0.12-win64.exe vlc-setup.exe
https://download.virtualbox.org/virtualbox/6.1.18/VirtualBox-6.1.18-142142-Win.exe virtualbox-setup.exe
https://code.visualstudio.com/sha/download?build=stable&os=win32-x64 vscode-setup.exe
https://github.com/microsoft/terminal/releases/download/v1.5.10411.0/Microsoft.WindowsTerminal_1.5.10411.0_8wekyb3d8bbwe.msixbundle windowsterminal-setup.msixbundle
https://download.xnview.com/XnViewMP-win-x64.exe xnview-setup.exe
1 https://downloads.citrix.com/17900/CitrixReceiver.exe?__gda__=1613947274_e90f49e3cf249c33c18f3cce69ef0e61 citrixreceiver-setup.exe
2 https://github.com/sqlitebrowser/sqlitebrowser/releases/download/v3.12.1/DB.Browser.for.SQLite-3.12.1-win64-v2.msi dbbrowser-setup.msi
3 https://www.emclient.com/dist/v8.1.1060/setup.msi emclient-setup.msi
4 https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi
5 https://download.sp.f-secure.com/SE/Retail/installer/F-SecureNetworkInstaller-AV.exe f-securenetworkinstaller-av_avtr20f930_.exe
6 https://golang.org/dl/go1.16.windows-amd64.msi go-setup.msi
7 https://dl.google.com/drive/gsync_enterprise64.msi gsync-setup.msi
8 https://www.python.org/ftp/python/2.7.18/python-2.7.18.amd64.msi python-setup.msi
9 https://www.softmaker.net/down/ofw2021_64.msi softmaker-setup.msi
10 http://www.drivesnapshot.de/download/snapshot64.exe snapshot64.exe
11 http://download.spotify.com/SpotifyFullSetup.exe spotify-setup.exe
12 https://statics.teams.cdn.office.net/production-windows-x64/1.4.00.2879/Teams_windows_x64.exe teams-setup.exe
13 https://totalcommander.ch/win/fixed/tcmd951x64.exe tcmd-setup.exe
14 https://ftp.halifax.rwth-aachen.de/videolan/vlc/3.0.12/win64/vlc-3.0.12-win64.exe vlc-setup.exe
15 https://download.virtualbox.org/virtualbox/6.1.18/VirtualBox-6.1.18-142142-Win.exe virtualbox-setup.exe
16 https://code.visualstudio.com/sha/download?build=stable&os=win32-x64 vscode-setup.exe
17 https://github.com/microsoft/terminal/releases/download/v1.5.10411.0/Microsoft.WindowsTerminal_1.5.10411.0_8wekyb3d8bbwe.msixbundle windowsterminal-setup.msixbundle
18 https://download.xnview.com/XnViewMP-win-x64.exe xnview-setup.exe

View File

@ -1,39 +0,0 @@
https://www.7-zip.org/a/7z1900-x64.exe 7z-setup.exe
https://curl.se/windows/dl-7.75.0_3/curl-7.75.0_3-win64-mingw.zip curl.zip
https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe
https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe
https://downloads.citrix.com/17900/CitrixReceiver.exe?__gda__=1613947274_e90f49e3cf249c33c18f3cce69ef0e61 citrixreceiver-setup.exe
https://github.com/sqlitebrowser/sqlitebrowser/releases/download/v3.12.1/DB.Browser.for.SQLite-3.12.1-win64-v2.msi dbbrowser-setup.msi
https://www.emclient.com/dist/v8.1.1060/setup.msi emclient-setup.msi
https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi
https://download.sp.f-secure.com/SE/Retail/installer/F-SecureNetworkInstaller-AV.exe f-securenetworkinstaller-av_avtr20f930_.exe
https://golang.org/dl/go1.16.windows-amd64.msi go-setup.msi
https://dl.google.com/drive/gsync_enterprise64.msi gsync-setup.msi
https://github.com/microsoft/terminal/releases/download/v1.5.10411.0/Microsoft.WindowsTerminal_1.5.10411.0_8wekyb3d8bbwe.msixbundle windowsterminal-setup.msixbundle
https://www.softmaker.net/down/ofw2021_64.msi softmaker-setup.msi
https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe openshell-setup.exe
https://statics.teams.cdn.office.net/production-windows-x64/1.4.00.2879/Teams_windows_x64.exe teams-setup.exe
http://download.spotify.com/SpotifyFullSetup.exe spotify-setup.exe
https://ftp.halifax.rwth-aachen.de/videolan/vlc/3.0.12/win64/vlc-3.0.12-win64.exe vlc-setup.exe
https://code.visualstudio.com/sha/download?build=stable&os=win32-x64 vscode-setup.exe
https://download.xnview.com/XnViewMP-win-x64.exe xnview-setup.exe
https://download.virtualbox.org/virtualbox/6.1.18/VirtualBox-6.1.18-142142-Win.exe virtualbox-setup.exe
https://ftp.mozilla.org/pub/firefox/releases/85.0.2/win64/en-US/Firefox%20Setup%2085.0.2.msi firefox-setup.msi
https://addons.mozilla.org/firefox/downloads/file/3726657/1password_password_manager-1.23.1-fx.xpi 1password-addon.xpi
https://addons.mozilla.org/firefox/downloads/file/3714988/bitwarden_free_password_manager-1.48.1-an+fx.xpi bitwarden-addon.xpi
https://addons.mozilla.org/firefox/downloads/file/3719054/ublock_origin-1.33.2-an+fx.xpi ublockorigin-addon.xpi
https://addons.mozilla.org/firefox/downloads/file/3719726/privacy_badger-2021.2.2-an+fx.xpi privacybadger-addon.xpi
https://winscp.net/download/WinSCP-5.17.10-Portable.zip winscp.zip
https://ftp.nluug.nl/pub/vim/pc/vim82w32.zip vim.zip
https://www.tightvnc.com/download/2.8.59/tightvnc-2.8.59-gpl-setup-64bit.msi tvnc-setup.msi
https://www.nirsoft.net/utils/offlineregistryfinder-x64.zip offlineregistryfinder.zip
https://www.deskmodder.de/blog/wp-content/uploads/2018/06/install-wim-tweak.zip installwimtweak.zip
https://download.sysinternals.com/files/BGInfo.zip bginfo.zip
https://www.sordum.org/files/downloads.php?st-windows-update-blocker wub.zip
https://the.earth.li/~sgtatham/putty/latest/w64/puttygen.exe puttygen.exe
https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_windows_amd64.zip restic.zip
https://downloads.rclone.org/v1.54.0/rclone-v1.54.0-windows-amd64.zip rclone.zip
http://www.drivesnapshot.de/download/snapshot64.exe snapshot64.exe
http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip
https://totalcommander.ch/win/fixed/tcmd951x64.exe tcmd-setup.exe
1 https://www.7-zip.org/a/7z1900-x64.exe 7z-setup.exe
2 https://curl.se/windows/dl-7.75.0_3/curl-7.75.0_3-win64-mingw.zip curl.zip
3 https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe
4 https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
5 https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe
6 https://downloads.citrix.com/17900/CitrixReceiver.exe?__gda__=1613947274_e90f49e3cf249c33c18f3cce69ef0e61 citrixreceiver-setup.exe
7 https://github.com/sqlitebrowser/sqlitebrowser/releases/download/v3.12.1/DB.Browser.for.SQLite-3.12.1-win64-v2.msi dbbrowser-setup.msi
8 https://www.emclient.com/dist/v8.1.1060/setup.msi emclient-setup.msi
9 https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi
10 https://download.sp.f-secure.com/SE/Retail/installer/F-SecureNetworkInstaller-AV.exe f-securenetworkinstaller-av_avtr20f930_.exe
11 https://golang.org/dl/go1.16.windows-amd64.msi go-setup.msi
12 https://dl.google.com/drive/gsync_enterprise64.msi gsync-setup.msi
13 https://github.com/microsoft/terminal/releases/download/v1.5.10411.0/Microsoft.WindowsTerminal_1.5.10411.0_8wekyb3d8bbwe.msixbundle windowsterminal-setup.msixbundle
14 https://www.softmaker.net/down/ofw2021_64.msi softmaker-setup.msi
15 https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe openshell-setup.exe
16 https://statics.teams.cdn.office.net/production-windows-x64/1.4.00.2879/Teams_windows_x64.exe teams-setup.exe
17 http://download.spotify.com/SpotifyFullSetup.exe spotify-setup.exe
18 https://ftp.halifax.rwth-aachen.de/videolan/vlc/3.0.12/win64/vlc-3.0.12-win64.exe vlc-setup.exe
19 https://code.visualstudio.com/sha/download?build=stable&os=win32-x64 vscode-setup.exe
20 https://download.xnview.com/XnViewMP-win-x64.exe xnview-setup.exe
21 https://download.virtualbox.org/virtualbox/6.1.18/VirtualBox-6.1.18-142142-Win.exe virtualbox-setup.exe
22 https://ftp.mozilla.org/pub/firefox/releases/85.0.2/win64/en-US/Firefox%20Setup%2085.0.2.msi firefox-setup.msi
23 https://addons.mozilla.org/firefox/downloads/file/3726657/1password_password_manager-1.23.1-fx.xpi 1password-addon.xpi
24 https://addons.mozilla.org/firefox/downloads/file/3714988/bitwarden_free_password_manager-1.48.1-an+fx.xpi bitwarden-addon.xpi
25 https://addons.mozilla.org/firefox/downloads/file/3719054/ublock_origin-1.33.2-an+fx.xpi ublockorigin-addon.xpi
26 https://addons.mozilla.org/firefox/downloads/file/3719726/privacy_badger-2021.2.2-an+fx.xpi privacybadger-addon.xpi
27 https://winscp.net/download/WinSCP-5.17.10-Portable.zip winscp.zip
28 https://ftp.nluug.nl/pub/vim/pc/vim82w32.zip vim.zip
29 https://www.tightvnc.com/download/2.8.59/tightvnc-2.8.59-gpl-setup-64bit.msi tvnc-setup.msi
30 https://www.nirsoft.net/utils/offlineregistryfinder-x64.zip offlineregistryfinder.zip
31 https://www.deskmodder.de/blog/wp-content/uploads/2018/06/install-wim-tweak.zip installwimtweak.zip
32 https://download.sysinternals.com/files/BGInfo.zip bginfo.zip
33 https://www.sordum.org/files/downloads.php?st-windows-update-blocker wub.zip
34 https://the.earth.li/~sgtatham/putty/latest/w64/puttygen.exe puttygen.exe
35 https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_windows_amd64.zip restic.zip
36 https://downloads.rclone.org/v1.54.0/rclone-v1.54.0-windows-amd64.zip rclone.zip
37 http://www.drivesnapshot.de/download/snapshot64.exe snapshot64.exe
38 http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip
39 https://totalcommander.ch/win/fixed/tcmd951x64.exe tcmd-setup.exe