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 -Uri $url -OutFile $dest
Add-AppxPackage -Path "C:\temp\KeeperPasswordManager.msixbundle"

The PowerShell Script will do the following.

  1. Call to Keeper desktop URL
  2. Download the package and place it in C:\temp
  3. Finally, it will install the Keeper .msixbundle to the user profile.

If you have any questions, feel free to reach out.

I hope this article was helpful, if you have any questions please feel free to contact me. If you would like to be notified of when I create a new post you can subscribe to my blog alert.

Leave a Comment

Stay Informed

Receive instant notifications when new content is released.