app/install_iperf3.cmd hinzugefügt

This commit is contained in:
2025-08-27 08:59:46 +00:00
parent ad6dfa59a7
commit 262d0c37b9

19
app/install_iperf3.cmd Normal file
View File

@@ -0,0 +1,19 @@
:: ----------------------------------------------------------------
:: 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%