64-Bit
https://github.com/brave/brave-browser/releases/download/v1.14.84/BraveBrowserStandaloneSilentSetup.exe
32-Bit
https://github.com/brave/brave-browser/releases/download/v1.14.84/BraveBrowserStandaloneSilentSetup32.exe
Right Click on the Link and Select "Go to https://github.com/brave/brave-browser/releases/......"
Download of the setup file will begin instantly and you will be able to install the specific Brave Version of your request offline.
The File which you are using Right now BraveBrowsersetup.exe which is less than 5MB is an online installer and it will always install the Latest Available/Released version… So you need to use the StandaloneSilentSetup.exe
Make sure you disable your Network before you run the Standalonesilentsetup.exe
- open Notepad
- copy the following code and save it as Networkhelper.bat file
@echo off
title Network Helper
echo ********************* Network Helper *********************
echo.
REM This batch file disables and enables all network adapters using PowerShell commands
REM Disable all network adapters
echo Instructing Windows to Disable All Network Adapters
timeout /t 10 /nobreak >nul
powershell -Command "Get-NetAdapter | Disable-NetAdapter -Confirm:$false"
echo.
echo Done, All Network adapters were successfully disabled.
echo.
echo All Adapters will be automatically Enabled after 60 minutes
REM Wait for 60 minutes
echo.
echo Status: Waiting
echo Waiting for 60 minutes..
echo.
echo ***************** Do Not Close this Window *****************
echo.
timeout /t 3600 /nobreak >nul
REM Enable all network adapters
echo.
echo Instructing Windows to Enable all Network Adapters..
echo.
echo Working..
powershell -Command "Get-NetAdapter | Enable-NetAdapter"
timeout /t 4 /nobreak >nul
echo Done, All Network adapters enabled.
timeout /t 2 /nobreak >nul
echo.
echo This window will automatically close in 90 seconds or hit Enter to exit now.
echo.
echo (C) Microsoft Corporation. All Rights reserved.
timeout /t 90 >nul
if %errorlevel% equ 1 exit