
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.
- Call to Keeper desktop URL
- Download the package and place it in C:\temp
- Finally, it will install the Keeper .msixbundle to the user profile.
If you have any questions, feel free to reach out.