This tread was started in 2013, now we have 2020!ADB Installer V.1.4.3 Download Link Not Work , Please Check And Fix
Yes Brother I saw This Thread started Date , When Check Google ADB Installer v1.4.3 Showing this Link , So I am Inform Add Or Fix V.1.4.3 Working Link
ADB Installer Updates (30.0.4-6686687) (July 2020)
Download Links: Windows
adb-setup-v1.4.3 (30.0.4-6686687) (July 2020)
adb-setup-v1.4.3 (30.0.4-6686687) (July 2020).zip
***Notes***
1. "1.4.3" is last original version uploaded by OP
2. "1.3" is old original version uploaded by OP
3. if you can't install ADB with latest "1.4.3", then use old "1.3"
Revisions:
30.0.4 (July 2020)
** adb **
Fix fallback to non-incremental apk installation on pre-Android 11 devices.
Fix adb install-multi-package.
Fix some more crashes related to adb wireless pairing.
Improve some error messages.
** fastboot **
Improve console output on fastboot oem commands.
Fix fastboot flashall on Nexus 7.
SDK Platform Tools (for Windows, Mac and Linux)
https://developer.android.com/studio/releases/platform-tools
Google USB Driver
https://developer.android.com/studio/run/win-usb
Why don't you use the search function? Or simply flip 3 pages backward & on the page 172 of this thread you would find what you're looking for...
---------- Post added at 11:05 PM ---------- Previous post was at 11:02 PM ----------
Reporting back: This particular version from July 2020 works just fine on Windows 10 v1909.
2>>%USERPROFILE%\Desktop\adb-installer.log
2>>%USERPROFILE%\Desktop\adb-installer.log
@ECHO off
cd /d %~dp0
CLS
TITLE 15 seconds ADB Installer v1.4.3 (30.0.5-6877874) (November 2020)
COLOR 17
ECHO ###############################################################################
ECHO # #
ECHO # 15 seconds ADB Installer #
ECHO # #
ECHO # version v1.4.3 (30.0.5-6877874) (November 2020) #
ECHO # #
ECHO # created by Snoop05 - [email protected] #
ECHO # updated by amit.tiger12 #
ECHO # #
ECHO # Android Debug Bridge version 1.0.41 #
ECHO # Google USB Driver version r12 11.0.0000.00000 (08/28/2014) #
ECHO # SDK Platform Tools version 30.0.5-6877874 #
ECHO # #
ECHO # http://forum.xda-developers.com/showthread.php?t=2588979 #
ECHO # #
ECHO ###############################################################################
:Q1
ECHO(
SET /P ANSWER=Do you want to install ADB and Fastboot? (Y/N)
IF /i {%ANSWER%}=={y} (GOTO Q2)
IF /i {%ANSWER%}=={yes} (GOTO Q2)
IF /i {%ANSWER%}=={n} (GOTO DRV)
IF /i {%ANSWER%}=={no} (GOTO DRV)
ECHO(
ECHO Bad answer! Use only Y/N or Yes/No
GOTO Q1
:Q2
ECHO(
SET /P ANSWER=Install ADB system-wide? (Y/N)
IF /i {%ANSWER%}=={y} (GOTO ADB_S)
IF /i {%ANSWER%}=={yes} (GOTO ADB_S)
IF /i {%ANSWER%}=={n} (GOTO ADB_U)
IF /i {%ANSWER%}=={no} (GOTO ADB_U)
ECHO(
ECHO Bad answer! Use only Y/N or Yes/No
GOTO Q2
:ADB_U
ECHO(
ECHO Installing ADB and Fastboot ... (current user only)
ECHO(
ADB kill-server > NUL 2>&1
SET /a COUNT=0
IF EXIST %WINDIR%\adb.exe DEL %WINDIR%\adb.exe /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
IF EXIST %WINDIR%\AdbWinApi.dll DEL %WINDIR%\AdbWinApi.dll /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
IF EXIST %WINDIR%\AdbWinUsbApi.dll DEL %WINDIR%\AdbWinUsbApi.dll /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
IF EXIST %WINDIR%\fastboot.exe DEL %WINDIR%\fastboot.exe /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
XCOPY adb\adb.exe "%USERPROFILE%"\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
XCOPY adb\AdbWinApi.dll "%USERPROFILE%"\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
XCOPY adb\AdbWinUsbApi.dll "%USERPROFILE%"\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
XCOPY adb\fastboot.exe "%USERPROFILE%"\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
ECHO %COUNT% file(s) copied.
:PATH_U
ECHO %PATH% > PATH.TMP
ver > nul
FIND "%USERPROFILE%\adb" PATH.TMP > nul 2>&1
IF %ERRORLEVEL% LSS 1 GOTO DRV
VER | FIND "5.1" > NUL 2>&1
IF %ERRORLEVEL% LSS 1 xp\SETX.exe PATH "%PATH%;%USERPROFILE%\adb" 2>>"%USERPROFILE%"\Desktop\adb-installer.log && GOTO DRV
SETX PATH "%PATH%;%USERPROFILE%\adb" 2>>"%USERPROFILE%"\Desktop\adb-installer.log
GOTO DRV
:ADB_S
ECHO(
ECHO Installing ADB and Fastboot ... (system-wide)
ECHO(
ADB kill-server > NUL 2>&1
SET /a COUNT=0
IF EXIST %WINDIR%\adb.exe DEL %WINDIR%\adb.exe /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
IF EXIST %WINDIR%\AdbWinApi.dll DEL %WINDIR%\AdbWinApi.dll /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
IF EXIST %WINDIR%\AdbWinUsbApi.dll DEL %WINDIR%\AdbWinUsbApi.dll /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
IF EXIST %WINDIR%\fastboot.exe DEL %WINDIR%\fastboot.exe /f /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log
XCOPY adb\adb.exe %SYSTEMDRIVE%\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
XCOPY adb\AdbWinApi.dll %SYSTEMDRIVE%\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
XCOPY adb\AdbWinUsbApi.dll %SYSTEMDRIVE%\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
XCOPY adb\fastboot.exe %SYSTEMDRIVE%\adb\ /y /q 1>nul 2>>"%USERPROFILE%"\Desktop\adb-installer.log && SET /a COUNT=%COUNT%+1
ECHO %COUNT% file(s) copied.
:PATH_S
ECHO %PATH% > PATH.TMP
ver > nul
FIND "%SYSTEMDRIVE%\adb" PATH.TMP > nul 2>&1
IF %ERRORLEVEL% LSS 1 GOTO DRV
VER | FIND "5.1" > NUL 2>&1
IF %ERRORLEVEL% LSS 1 xp\SETX.exe PATH "%PATH%;%SYSTEMDRIVE%\adb" /m 2>>"%USERPROFILE%"\Desktop\adb-installer.log && GOTO DRV
SETX PATH "%PATH%;%SYSTEMDRIVE%\adb" /m 2>>"%USERPROFILE%"\Desktop\adb-installer.log
:DRV
DEL PATH.TMP
ECHO(
SET /P ANSWER=Do you want to install device drivers? (Y/N)
IF /i {%ANSWER%}=={y} (GOTO DRIVER)
IF /i {%ANSWER%}=={yes} (GOTO DRIVER)
IF /i {%ANSWER%}=={n} (GOTO FINISH)
IF /i {%ANSWER%}=={no} (GOTO FINISH)
ECHO Bad answer! Use only Y/N or Yes/No
GOTO DRV
:DRIVER
IF DEFINED programfiles(x86) GOTO x64
:x86
ECHO(
ECHO Installing 32-bit driver ...
ECHO Please continue driver installation ...
PING localhost -n 1 >NUL
START /wait driver\DPInst_x86 /f 2>>"%USERPROFILE%"\Desktop\adb-installer.log
GOTO FINISH
:x64
ECHO(
ECHO Installing 64-bit driver ...
ECHO Please continue driver installation ...
PING localhost -n 1 >NUL
START /wait driver\DPInst_x64 /f 2>>"%USERPROFILE%"\Desktop\adb-installer.log
:FINISH
ECHO(
ECHO All done!
CALL :LOG "%USERPROFILE%"\Desktop\adb-installer.log
:LOG
IF %~z1 == 0 DEL "%USERPROFILE%"\Desktop\adb-installer.log /f /q > nul 2>&1
PING localhost -n 2 >NUL
EXIT
@amit.tiger12 is there any official page of you so I can get all news related to it? Perhaps github at least?
Thanks
I tried to download the file but the link no longer works, you could put the file back.ADB Installer Updates (30.0.4-6686687) (July 2020)
Download Links: Windows
adb-setup-v1.4.3 (30.0.4-6686687) (July 2020)
adb-setup-v1.4.3 (30.0.4-6686687) (July 2020).zip
***Notes***
1. "1.4.3" is last original version uploaded by OP
2. "1.3" is old original version uploaded by OP
3. if you can't install ADB with latest "1.4.3", then use old "1.3"
Revisions:
30.0.4 (July 2020)
SDK Platform Tools (for Windows, Mac and Linux)
- adb
- Fix fallback to non-incremental apk installation on pre-Android 11 devices.
- Fix adb install-multi-package.
- Fix some more crashes related to adb wireless pairing.
- Improve some error messages.
- fastboot
- Improve console output on fastboot oem commands.
- Fix fastboot flashall on older devices such as Nexus 7.
https://developer.android.com/studio/releases/platform-tools
Google USB Driver
https://developer.android.com/studio/run/win-usb
Disk spaced used for ADB & Fastboot drivers package is ~ 6.5 MB, so it shouldn't be a problem to keep it.This is great! How do we uninstall the thing after use. I use a Windows Surface device and don't have much space on the C drive
Where can I find the Link to Download 15 Second ADB Installer? Please.
BRAIN, 7-Zip, Notepad++, WDK, ResourceHacker, UPX, Android SDK, and maybe something else
Use this its the original direct download from xda.when the installaton got succesful i got notiication from Bitdefender that Ransomeware behaviour detected by adb-setup-1.4.3.exe. Is this file reallly safe and one more thing i wasn't able to download adb file from your source so i used other webpage. xda forum is not letting me paste the here for now.
Nice! Thank you. Will give this a shot. My adb/fastboot quit working when I moved and I cannot get it uninstalled or reinstalled for some reason. Have even tried other one click packages and still no go. Will try tonight. Does this need internet connection to install proper drivers, or are they packaged?
Edit: I just looked at the driver pics and it appears they're local. Great! Thank you.
Sent from my EVO 4G LTE using XDA Premium 4 mobile app