top of page

Auto Install Brave Browser using PowerShell

  • aymeneljaziri
  • 29 juil. 2023
  • 1 min de lecture

ree

To install Brave Browser Automatically :

PowerShell Code

# Create a temporary directory to store Brave64 mkdir -Path $env:temp\Brave -erroraction SilentlyContinue | Out-Null $Download = join-path $env:temp\Brave Brave64.exe # Download the Brave installer. Invoke-WebRequest 'https://laptop-updates.brave.com/latest/winx64/Brave64.exe' -OutFile $Download # Install Google Brave using Powershell. Invoke-Expression "$Download /install"

Thanks



Aymen EL JAZIRI


System Administrator





Commentaires


Aymen EL JAZIRI

  • alt.text.label.LinkedIn

© 2023 par Aymen EL JAZIRI

bottom of page