top of page

Auto Install Google Chrome browser using PowerShell

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

ree

To install Google Chrome Automatically :

​PowerShell Code

# Create a temporary directory to store Google Chrome. mkdir -Path $env:temp\chromeinstall -erroraction SilentlyContinue | Out-Null $Download = join-path $env:temp\chromeinstall chrome_installer.exe # Download the Google Chrome installer. Invoke-WebRequest 'http://dl.google.com/chrome/install/375.126/chrome_installer.exe' -OutFile $Download # Install Google Chrome 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