Releases: name/passkey-skip
Releases · name/passkey-skip
0.2.0
Passkey Skip v0.2.0
New Features
- Added
--skip-pin
mode for bypassing PIN entry- Automatically navigates through the PIN entry dialog
- Useful for setups that don't require PIN verification
Improvements
- Increased key press delays for better reliability
- Added detailed documentation for both operating modes
- Improved error handling and window detection
Usage Examples
Standard Mode
Default behavior - selects security key option
PIN Skip Mode
New PIN skip mode - bypasses PIN entry
Installation
Quick Start
- Download
passkey-skip.exe
- Run normally, or with
--skip-pin
to bypass PIN entry
Auto-start Setup
# Standard Mode
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\PasskeySkip.lnk")
$Shortcut.TargetPath = "C:\Program Files\PasskeySkip\passkey-skip.exe"
$Shortcut.Save()
# PIN Skip Mode
$Shortcut.Arguments = "--skip-pin"
$Shortcut.Save()
Known Issues
- None reported
0.1.0
Passkey Skip
A simple Windows utility that automatically handles Windows Security prompts by selecting the security key option, making the FIDO2 authentication process smoother.
Features
- Runs silently in the system tray
- Automatically detects Windows Security prompts
- Automatically selects the security key option
- Starts automatically with Windows (optional)
- Minimal resource usage
Building from Source
- Install Rust from rustup.rs
- Clone this repository
- Run
cargo build --release
- The executable will be in
target/release/passkey-skip.exe