Files
setup_windows_2/app/install_iperf3.cmd

20 lines
597 B
Batchfile
Raw Normal View History

2025-08-27 08:59:46 +00:00
:: ----------------------------------------------------------------
:: Installiere IPERF3
:: ----------------------------------------------------------------
:: --- Option: Download in ein temporäres Verzeichnis
:: --- Kann für z.B. für GLPI abgeschaltet werden
set SAVEPATH=%SYSTEMDRIVE%\SETUP
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
set VERS=3.19.1
set BASEURL=https://github.com/ar51an/iperf3-win-builds/releases/download/%VERS%
set PROG=iperf-%VERS%-win64.zip
curl -kLO %BASEURL%/%PROG%
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath %SYSTEMDRIVE%\Windows }"
del %PROG%