fr33thytweaks / Ultimate-Windows-Optimization-Guide

181 stars 16 forks source link

`4 Installers\1 Installers.ps1` - `Google Chrome` URL #10

Closed Obegg closed 3 days ago

Obegg commented 1 month ago

Instead of: https://github.com/fr33thytweaks/Ultimate-Windows-Optimization-Guide/blob/11f80fdb98fec74b2e342c2e1825b5556bb790e0/4%20Installers/1%20Installers.ps1#L166 Which downloads a 32bit Google Chrome

Use:

Get-FileFromWeb -URL "https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi" -File "$env:TEMP\Chrome.msi"

Which downloads a 64bit Google Chrome

Also use /quiet to silent install

fr33thytweaks commented 3 days ago

added thankyou!