An offline password manager built using PowerShell with a clean UI interface. Ideal for users who prefer simple credential storage without relying on cloud services.
Krishnaprasad Narayanankutty
GitHub: @strongminds1143
- v1.0.0 - ( Apr 23, 2025 ) Initial version of PSK.
- v1.0.1 - ( May 5, 2025 )
- Fixed the 'getinstalledbrowsers' function to look for installed browsers from registry instead of using harcoded .exe paths.
- Corrected name of private modes respective to browser
PSKv1.0.1 is a UI-based PowerShell script that serves as an offline password manager. It allows users to securely store, manage, and retrieve credentials. Credentials are encrypted using a custom key—partially derived from user input and partially randomly generated—for enhanced security. The tool is optimized for Windows systems.
This project began as a personal challenge to create a secure, offline password vault using PowerShell. I wanted something lightweight, customizable, and easy to maintain without depending on any cloud service. You can read the full background and journey here:
PowerShell Secret Keeper – Behind the Build
- Store credentials securely with Name, Key, Secret, and optional URL + browser.
- Toggle display bar data: Name, Key, or URL.
- One-click copy to clipboard for Key or Secret.
- Launch saved URLs using your preferred browser in normal/incognito mode.
- Add/Edit/Delete credentials.
- Logs errors in
PSK_All.log. - PIN-protected access with encryption.
- Runs completely offline.
- PowerShell 5.1 or later (Windows)
- PowerShell Editions: Desktop and Server
- Font: Segoe UI (includes Segoe UI Emoji)
- Download the repo as a
.zipfile. - Extract to a folder with script execution permissions.
- Run
CONFIG.batto initialize folders and organize files. - Launch with
PSK_APPLICATION.bat. - (Optional) Create a desktop shortcut for
PSK_APPLICATION.bat.
- Run
PSK_APPLICATION.bat. - Set a 4-digit PIN on first launch.
- Enter the main dashboard.
- Click "+" to add a credential.
- Required: Name, Key, Secret
- Optional: URL, Browser
- Use the action buttons:
- Copy Key🔑 / Copy Secret🔒 to clipboard
- 🌐 to open the stored URL
- 🔧 to edit/delete entries
- Close app using the window "X" button.
- Enter your 4-digit PIN to access.
- Wrong PIN will close the app automatically.
- Make sure the downloaded
.zipfiles aren't blocked by Windows. Unblock it from properties.
- Run
RESET.batto clear all saved credentials and reset PSK. - Warning: This action is permanent and cannot be undone.
- Forgotten PINs cannot be recovered.
- Backup
ENCRYPTION_KEYSandSECRET_RECORDSfolders before you modify the script. - To use the new releases of PSK, make sure you copy paste the
ENCRYPTION_KEYSandSECRET_RECORDSfolders to the new script folders after running the CONFIG.BAT - A small command window will remain open due to how the script is launched (this is normal and can be minimized).
- Package PSK for cross-platform support (Mac/Linux).
- Create centralized config PSD1 file.
- Add URL validation.
- Support for PowerShell 7.x series.
- All logs are written to
PSK_All.log.
- Errors, actions, and runtime events are logged automatically.
- PIN mismatch closes app.
- Credential errors prompt UI alerts.
- user-key + random key encryption.
- All data stored locally and securely.
- Limited to Windows only for now.
- For Opera, PSK can handle only the standard Opera Web Browser (versions 108+).Since it uses 'opera.exe' in commands.
MIT License