Make MSI installer available

Just bumping this thread to make sure it’s not forgotten. We need an MSI to install this app at the system level so it works with windows hello via GPO.

I currently run a login script to install this, and I regularly have to remote on to a user’s machine to enter admin credentials to get app updates for them. Getting to the point that I’m considering uninstalling it, it’s just not worth the grief to pre-install.

1password native passkey support requires MSIX -version. I assume that might be the case here as well (didn’t find Passkey API documentation), and as native Windows passkey support announced this might be resolved at same time.

For those who are struggling issues updating/installing via intune/sccm, I came up with the commands below. This is now working for me on intune, using device deployment. With these commands, I’m now able to successfully install, uninstall, and update. For updates, I use a supersedence rule with “uninstall previous version” set to “yes”.

A proper MSI that supports device installs and handles cases where the client would obviously be much simpler. But until that’s available, this seems to work OK.

Install command:

powershell.exe -noprofile -command "& {stop-process -Name Bitwarden -Force -ErrorAction SilentlyContinue;wait-process -Name Bitwarden -ErrorAction SilentlyContinue;start-process -wait -filepath 'Bitwarden-Installer-2025.9.0.exe' -argumentlist '/allusers','/S'}"

Uninstall command:

powershell.exe -noprofile -command "& {stop-process -Name Bitwarden -Force -ErrorAction SilentlyContinue;wait-process -Name Bitwarden -ErrorAction SilentlyContinue;start-process -wait -filepath 'C:\Program Files\Bitwarden\Uninstall Bitwarden.exe' -argumentlist '/allusers','/S'}"