Category Archives: Windows

Windows Tutorials

Install Google Chrome With PowerShell

In this tutorial you will learn how to install Google Chrome using PowerShell. By the end of this tutorial, you would have successfully deployed Google Chrome using PowerShell onto a Windows computer.

$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe";
(new-object    System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', 
Read the rest
Windows Tutorials

Install Keeper Desktop With PowerShell

In this tutorial you will learn how to install Keeper Password Manager using PowerShell. By the end of this tutorial, you would have successfully deployed Keeper Password Manager to a logged in user. 

$url = "https://www.keepersecurity.com/desktop_electron/packages/KeeperPasswordManager.msixbundle"
$dest = "c:\temp\KeeperPasswordManager.msixbundle"
Invoke-WebRequest 
Read the rest