Showing posts with label chrome. Show all posts
Showing posts with label chrome. Show all posts

Powershell: Installing google chrome browser

 To install chrome browser, using windows Powershell.

  • Open Powershell as Administrator
  • Paste below command
  • 
      $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)
      
      

    Hope it helps

Install Google Chrome in CentOS 6.X

Hello ,

In CentOS 6.X , installing Google Chrome webbrowser is not easy task. We have dependencies issues with  "libstdc++.so.6(GLIBCXX_3.4.15)".

On searching I came to know about Chrome Richardlloyd . By using his script we can install Chrome very easily with in CentOS.

To install it , open your terminal and turn into root user and paste these lines one after one
wget http://chrome.richardlloyd.org.uk/install_chrome.sh
chmod u+x install_chrome.sh
./install_chrome.sh
It will install Google Chrome in your CentOS. 

Note : Google announced , dropping support for 32-Bit google chrome from March 2016.