From 262d0c37b9b0be9acffb582f0bd4ada38413e56d Mon Sep 17 00:00:00 2001 From: Peter Reichart Date: Wed, 27 Aug 2025 08:59:46 +0000 Subject: [PATCH] =?UTF-8?q?app/install=5Fiperf3.cmd=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/install_iperf3.cmd | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/install_iperf3.cmd diff --git a/app/install_iperf3.cmd b/app/install_iperf3.cmd new file mode 100644 index 0000000..30ba3f0 --- /dev/null +++ b/app/install_iperf3.cmd @@ -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% +