Automate This
Use the Attune GUI for your Scripts
You've automated: Install Brave Browser on Windows - OFFLINE
Get the most out of automation with our get started videos, product demonstrations, and more.
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.
Copy the File(s) Brave_Browser_Installer_for_Windows.unknown to the target node.
Deploy the File(s) here:
/c$/software/
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."
}
You have completed this instruction.
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!