solved issue #38, Archer T5E bluetooth driver

This commit is contained in:
Michael H.G. Schmidt 2022-05-31 22:52:21 +02:00
parent d27868e4a6
commit 52300be081
3 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,27 @@
@echo off
set T=c:\TEMP
set TOOLS=c:\tools
set ZIP=..\software\archerT5E-bluetooth.zip
set UNPACKDIR="Archer T5E(UN)_V1_191116_Bluetooth"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking Archer T5E bluetooth drivers ...
%TOOLS%\7z x -y -aoa -o"%T%" %ZIP%
echo executing setup ...
start /w %T%\%UNPACKDIR%\win10\setup.exe
echo cleanup ...
rd /S /Q %T%\%UNPACKDIR%
echo.
echo ####### %0 #######
pause

View File

@ -0,0 +1,27 @@
@echo off
set T=c:\TEMP
set TOOLS=c:\tools
set ZIP=..\software\archerT5E-wifi.zip
set UNPACKDIR="Archer T5E(UN)_V1_191116_Wi-Fi"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking Archer T5E wifi drivers ...
%TOOLS%\7z x -y -aoa -o"%T%" %ZIP%
echo executing setup ...
start /w %T%\%UNPACKDIR%\win7_8_1_10_64bit\setup.exe
echo cleanup ...
rd /S /Q %T%\%UNPACKDIR%
echo.
echo ####### %0 #######
pause

View File

@ -32,4 +32,6 @@ https://www.sharemouse.com/ShareMouseSetup.exe sharemouse-setup.exe
https://download01.logi.com/web/ftp/pub/techsupport/options/options_installer.exe logitechoptions-setup.exe
https://sourceforge.net/projects/keepass/files/KeePass%202.x/2.51.1/KeePass-2.51.1-Setup.exe/download?use_mirror=netcologne# keepass2-setup.exe
https://download3.pdf24.org/pdf24-creator-11.1.0.msi pdf24-setup.msi
https://static.tp-link.com/2019/201911/20191115/Archer-T5E(UN)_V1_191116_Bluetooth.zip archerT5E-bluetooth.zip
https://static.tp-link.com/2019/201911/20191115/Archer-T5E(UN)_V1_191116_Wi-Fi.zip archerT5E-wifi.zip

1 https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg-1.14.0.jar bfg.jar
32 https://download01.logi.com/web/ftp/pub/techsupport/options/options_installer.exe logitechoptions-setup.exe
33 https://sourceforge.net/projects/keepass/files/KeePass%202.x/2.51.1/KeePass-2.51.1-Setup.exe/download?use_mirror=netcologne# keepass2-setup.exe
34 https://download3.pdf24.org/pdf24-creator-11.1.0.msi pdf24-setup.msi
35 https://static.tp-link.com/2019/201911/20191115/Archer-T5E(UN)_V1_191116_Bluetooth.zip archerT5E-bluetooth.zip
36 https://static.tp-link.com/2019/201911/20191115/Archer-T5E(UN)_V1_191116_Wi-Fi.zip archerT5E-wifi.zip
37