Google Chrome installation with PowerShell

Google Chrome- Basic information

Google Chrome began building in 2008 and was only released on Microsoft Windows. The name is derived from the graphical interface frames, or "chrome", of web browsers. Google later released a large split code source as an open-source format under the Chromium project name, enabling codes to run and scan code thus expanding the browser in Mac and Linux applications.

Although chrome was only released for the first time on Microsoft platforms, it quickly found the next one on the market. This thunderstorm may be due to the clean interface the users are giving you while browsing the Internet. The web browser user interface is an important factor in choosing which browser to use. A clean and comprehensive browser gives users distractions while browsing. The last thing the user wants is to browse the web pages in a crowded window. This is where the browser gains its audience.

Benefits:

  1. It is highly recommended that chrome use the JavaScript engine to enable the next generation of web applications
  2. Uses a separate Tab process. According to Chrome, if one-tab crashes, only that tab crashes. You can still work with others.
  3. Easy Installation Process: The installation of Google Chrome is as easy as piece of cake.
  4. Fast: Compared to other browsers it is faster. But it needs to be even faster.
  5. The combined search box and URL box are really interesting. You can type your search and the URL bar comes with related sites and makes browsing easier.
  6. When you open a new tab, chrome comes with your recently viewed websites, with a larger size than an icon to make it easier for you to visit your regular sites.
  7. Chrome uses a platform to use a browser that reduces OS requirements.

Disadvantages:

  1. Unlike other browsers, when you close the browser, it does not ask if we want to close all tabs or the current one.
  2. Security: More personal information is stored in chrome which may be a security issue.

Installation with PowerShell

To start with this, the very first step is to open PowerShell as an administrator. Paste the below command and hit enter and it will take some time to get the installation completed.

$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)

0 Comments: