How to Install Brave Browser on Windows

This documentation is generated by Attune

Automate This

Use the Attune GUI for your Scripts

    1 Download Attune
    2 Copy the Attune Project URL
    3 Clone the Project in Attune
    4 Plan your Job(s)
    5 Run your Job(s)

You've automated: Install Brave Browser on Windows


Get the most out of automation with our get started videos, product demonstrations, and more.

Learn Attune Automation

The following steps will guide you through the manual process.

Connect via RDP:

mstsc /admin /v:{bravebrowsernode}

Login as user {windowsuseradministrator} and open a command prompt.

Execute the following script:

                
# Script Variables
$downloadLink = "https://brave-browser-downloads.s3.brave.com/latest/brave_installer-x64.exe"
$fileLocation = "c:\software\"
$installer = "brave_installer-x64.exe"
$software = "Brave"
$installedApplication = "c:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe"

# Check if the software is already installed.
$installed = (Test-Path $installedApplication)

if($installed) 
{
	Write-Host "'$software' is already installed."
} 
else 
{
# Download the installer
    Write-Host "Downloading the '$software' installer..."
    if (-not (Test-Path $fileLocation)) 
    {
        New-Item -ItemType "directory" -Path "$fileLocation"
    }
    Invoke-WebRequest $downloadLink -OutFile $fileLocation$installer
    Get-Item $fileLocation$installer
}
                
            

Execute the following script:

                
# Script Variables
$fileLocation = "c:\software\"
$installer = "brave_installer-x64.exe"
$software = "Brave"
$installedApplication = "c:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe"
$arguments = "--install --silent --system-level"

# Check if the software is already installed.
$installed = (Test-Path $installedApplication)

if($installed) 
{
	Write-Host "'$software' is already installed."
}
else 
{
# install software.
	Write-Host "Running the '$software' installer..."
    Start-Process -FilePath "$fileLocation$installer" `
    -ArgumentList "$arguments" -Wait
    
# Confirm the software was installed.
    $installed = (Test-Path $installedApplication)
    
    if($installed) 
    {
    	Write-Host "'$software' was successfully installed."
    }
    else 
    {
    	Write-Error "'$software' was not installed."
    }
}
                
            

Execute the following script:

                
# Script Variables
$fileLocation = "c:\software\"
$installer = "brave_installer-x64.exe"
$software = "Brave"

# Cleanup installer.
if (Test-Path $fileLocation$installer)
{
    Remove-Item $fileLocation$installer
    Write-Host "Cleaned up '$software' installer."
}
else
{
    Write-Host "'$software' installer not found."
}
                
            

Completed

You have completed this instruction.

Attune - Powered by ServerTribe

Automate with Attune

Download the Attune Community Edition.

DOWNLOAD!!!

Discuss this Project in Discord

Join our Discord channel and connect with like-minded individuals who share your passion. Engage in lively discussions, gain valuable insights, and stay updated on the latest trends in our industry. Don't miss out on this opportunity to network, learn, and grow together.


Click the link below and become a part of our vibrant community on Discord today!

Join NOW!!!