NL Dutch
FR French
IT Italian
JP Japanese
DE German
US English (US)
ES Spanish

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

  • Contact Us
English (US)
NL Dutch
FR French
IT Italian
JP Japanese
DE German
US English (US)
ES Spanish
  • Home
  • Password Boss Knowledgebase
  • Using Password Boss
  • Password Boss Apps & Downloads

Password Boss Windows Helper App

Install and deploy the Password Boss Windows Helper app, and fix common autofill issues.

Written by Chris Liles

Updated at September 10th, 2026

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

  • AutoElevate Knowledgebase
    New to AutoElevate? START HERE AutoElevate Features & Troubleshooting Managing Rules in AutoElevate Integrations for AutoElevate AutoElevate FAQ Selling AutoElevate
  • Password Boss Knowledgebase
    Using Password Boss Administrating Password Boss Legacy Password Boss
  • CyberFOX DNS Filtering
    Getting Started with DNS Filtering DNS Filtering Concepts Network Requirements for DNS Filtering DNS Filtering Company and Location Setup Managing your DNS Filtering Policies Using Roaming Clients for DNS Filtering DNS Filtering Reports & Logs DNS Filtering Troubleshooting
  • Marketing Toolkit
    MSP Marketing & Education Toolkit CyberFOX Brand Guidelines
  • Changelogs for Autoelevate and Password Boss
  • CyberFOX Product Roadmap
  • Current Status
+ More

Table of Contents

Overview What Is the Windows Helper App? For local applications ONLY Prerequisites Installation / Deployment Administrator privileges are required for both MSI and NSIS installs and uninstalls MSI (recommended for enterprise) NSIS (.exe) Portable (.exe) Verify It Worked Common Issues Still Having Issues?

Overview

What Is the Windows Helper App?

The Windows Helper app is a small Windows desktop application that extends Password Boss beyond the browser. While the browser extension autofills passwords on websites, the Windows Helper autofills credentials in native desktop applications—things like VPN clients, remote desktop tools, and other software that isn't running in a browser tab.

It runs quietly in the system tray, watches for the active application window, and offers to fill saved credentials when it recognizes a supported login screen (for example, Cisco AnyConnect, OpenVPN, FortiClient, ConnectWise, Zoom, Microsoft Teams, or Slack's desktop login).

For local applications ONLY

It is a separate install from the browser extension. A client can have one, both, or neither installed depending on their needs — the Windows Helper only affects native desktop apps, not websites.

 

 

Prerequisites

  • Windows only (not available on macOS or Linux)
  • Administrator/elevated rights on the machine to install
  • An active Password Boss account, signed in through the web app (app.passwordboss.com)

Installation / Deployment

The desktop app ships in three Windows formats:

  • MSI (.msi) — Recommended for enterprise deployment (SCCM, Intune, GPO)
  • NSIS (.exe) — Scripted/manual silent installs where MSI tooling isn't available
  • Portable (.exe) — Standalone, no install; no silent mode exists for this target, not recommended for managed rollouts

Administrator privileges are required for both MSI and NSIS installs and uninstalls

Both targets are configured for machine-wide (perMachine) install, which needs an elevated prompt to complete. Because /qn (MSI) and /S (NSIS) run with no UI, neither can trigger a UAC prompt on its own — always launch from an already-elevated session, or let your RMM's "run as SYSTEM/Administrator" deployment mode handle it (SCCM, Intune, and GPO all do this natively).

 

 

MSI (recommended for enterprise)

Install, silent and machine-wide:

msiexec /i "C:\path\to\PasswordBossDesktopAppSetup-<version>.msi" MSIINSTALLPERUSER="" /qn /norestart /l*v "C:\path\to\install.log"

Uninstall, silent:

msiexec /x "C:\path\to\PasswordBossDesktopAppSetup-<version>.msi" /qn

Notes:

  • MSIINSTALLPERUSER="" is required for a true machine-wide install. Without it, the installer silently defaults to a per-user install even when run elevated.
  • Always quote both the MSI path and the log path, and use absolute paths for both — a relative log path can drop the log somewhere unexpected.
  • /qn shows no UI, /norestart suppresses an automatic reboot, /l*v <log> writes a verbose log — capture this before escalating any failed unattended install.
  • If a machine-wide install silently fails, check the log for MSI error 1925 or 1603 — both point to the install running without proper elevation.
  • Installing a newer MSI over an existing install upgrades it in place — no duplicate entry in Apps & Features.

PowerShell scripting tip: msiexec doesn't block when launched directly from PowerShell, so $LASTEXITCODE won't reflect the real result. Use Start-Process -Wait -PassThru instead:

$p = Start-Process msiexec -ArgumentList '/i', '"C:\path\to\PasswordBossDesktopAppSetup-<version>.msi"', 'MSIINSTALLPERUSER=""', '/qn', '/norestart', '/l*v', '"C:\path\to\install.log"' -Wait -PassThru
$p.ExitCode   # 0 = success, 3010 = success, reboot required

NSIS (.exe)

Install, silent, default location (from an elevated prompt):

PasswordBossDesktopAppSetup-<version>.exe /S

Install, silent, custom directory:

PasswordBossDesktopAppSetup-<version>.exe /S /D=C:\Program Files\PasswordBossDesktopApp

/D must be the last argument and must not be quoted, even if the path has spaces.

 

 

Uninstall, silent: run the generated uninstaller from the app's install directory with /S — this also requires an elevated prompt.

Portable (.exe)

Not an installer — runs standalone without installing anything on the machine. This target has no silent-install or silent-uninstall mode, so it isn't suited to RMM/managed deployment.

Before broad rollout: verify the MSI/EXE's code-signing signature status matches your organization's software deployment policy — signing for these installers is confirmed separately from this guide.

 

 

Verify It Worked

  • The Password Boss icon appears in the Windows system tray.
  • Opening the tray icon shows the app signed in (or prompts you to sign in on first launch).
  • On a known-supported app (e.g., Cisco AnyConnect or the ConnectWise desktop client), opening its login screen should trigger an autofill prompt within a couple of seconds.

Common Issues

A specific desktop app isn't being auto-detected, even though it's on the list.

The Windows Helper relies on how an application exposes its login fields to Windows. Some apps use non-standard interfaces the Helper can't automatically recognize. If the app appears in the Helper's app list but doesn't trigger autofill, try selecting it manually from the list instead of waiting for auto-detection.

 

Autofill works reliably on some apps but not others.

This is expected — compatibility varies based on how the target application is built. Common VPN clients, RDP, and communication apps (Cisco AnyConnect, ConnectWise, Zoom, Teams, Slack) are well-supported. Apps with custom-drawn or unusual interfaces may fill inconsistently or not at all. If autofill fails, you can always copy the credential from the web app and paste it manually as a fallback.

 

Autofill doesn't work in a window running "Run as Administrator."

Windows security policy prevents standard applications from sending input into elevated (admin) windows. This is a Windows-level restriction, not a bug — the workaround is to copy the password from the web app and paste it manually into the elevated window.

 

Autofill doesn't reach an app running inside a Remote Desktop (RDP) or remote-support session.

The Windows Helper runs on the local machine and can't reach into a separate remote session. Use copy/paste from the web app instead — if the RDP session has clipboard redirection enabled, copying locally and pasting into the remote session will work.

 

The Helper's tray icon is missing after installation.

Confirm the install actually completed (check Apps & Features, or the MSI install log if deployed via RMM). If it's installed but the tray icon isn't showing, sign out and back in, or restart the app from the Start menu.

 

Still Having Issues?

If a client has followed the steps above and the Helper still isn't detecting or filling a specific application, escalate with:

  • The exact application name and version
  • Windows version
  • Whether the app appears in the Helper's manual app-selection list
  • Whether the same credential fills correctly through the web app or browser extension

 

 

password manager autofill issues windows helper app autofill helper login helper desktop app native app autofill msi install nsis install silent install sccm deployment intune deployment gpo deployment rmm deployment msi error 1925 msi error 1603 app not detected tray icon missing password boss windows helper windows helper app autofill helper login helper desktop app desktop autofill native app autofill cyberfox password manager msi install nsis install silent install unattended install msiinstallperuser msi error 1925 msi error 1603 sccm deployment intune deployment gpo deployment rmm deployment deploy push rollout cisco anyconnect autofill connectwise autofill vpn client autofill rdp autofill remote desktop autofill tray icon missing app not detected run as administrator autofill elevated window autofill

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • How to Fix the PasswordBoss extension installation issue for Edge for Business (Legacy)
  • Troubleshooting Password Boss in your browser
  • Deploying Password Boss Business for your entire team (Legacy)
CyberFOX

PRACTICAL CYBERSECURITY FOR LEAN IT TEAMS

Platforms
  • Privileged Access Management
  • Password Management
  • DNS Filtering
  • SASE
Industry
  • Higher Education
  • K-12 Education
  • State and Local Government
  • Manufacturing
Company
  • About
  • Awards
  • Partnerships
  • Trust & Legal
  • Contact
  • Login
  • FAQ
  • Referral Program
  • Support
© 2026 CYBERFOX LLC ALL RIGHTS RESERVED | Privacy Policy | Terms of Service | Sitemap
Expand