This script will grab and install the latest version of Bitwarden Desktop, a fast and secure password manager for every occasion.
Website: https://bitwarden.com/
Update 2025-04-29:
Initial release here
Here we go:
$ProgressPreference = 'SilentlyContinue'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$tp = "C:\TempPath"
mkdir $tp
$installerUrl = "https://bitwarden.com/download/?app=desktop&platform=windows&variant=exe"
$installerPath = "$tp\BitwardenInstaller.exe"
Invoke-WebRequest -Uri $installerUrl -OutFile $installerPath
Start-Process -FilePath $installerPath -ArgumentList "/allusers /S" -Wait
Start-Sleep -Seconds 10
del $installerPath