Download and Install Google Chrome for PSM
Download and Install Google Chrome for PSM
64bit Google Chrome
This script downloads Google Chrome 64bit and executes the msi installer.
1
2
3
Start-BitsTransfer "https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise64.msi" $env:TEMP\GoogleChromeStandaloneEnterprise64.msi
$chromeinstaller = "$env:TEMP\GoogleChromeStandaloneEnterprise64.msi"
msiexec.exe /package $chromeinstaller
32bit Google Chrome
This script downloads Google Chrome 32bit and executes the msi installer.
1
2
3
Start-BitsTransfer "https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi" $env:TEMP\GoogleChromeStandaloneEnterprise64.msi
$chromeinstaller = "$env:TEMP\GoogleChromeStandaloneEnterprise.msi"
msiexec.exe /package $chromeinstaller
Google Chrome Driver
Downlaod the Google Chrome Driver and place it in the “C:\Program Files (x86)\CyberArk\PSM\Components" folder
Applocker Configuration
Edit file “C:\Program Files (x86)\CyberArk\PSM\Hardening\PSMConfigureAppLocker.xml”
1
2
3
4
5
<!-- Google Chrome process -->
<!-- If relevant, uncomment this part to allow Google Chrome webform based connection clients
End of Google Chrome process comment -->
<Application Name="GoogleChrome" Type="Exe" Path="C:\Program Files\Google\Chrome\Application\chrome.exe" Method="Publisher" />
<Application Name="GoogleChromeDriver" Type="Exe" Path="C:\Program Files (x86)\CyberArk\PSM\Components\chromedriver.exe" Method="Path" />
This post is licensed under CC BY 4.0 by the author.