How to Lock Apps with Password in Windows: A Complete Guide

Windows doesn’t include a built-in feature to password-protect individual apps, but you can still secure your applications. This guide shows you exactly how to lock apps with passwords using multiple methods that actually work.

Why You Need to Lock Apps on Windows

Your computer holds private information. Banking apps, email clients, messaging software, and personal files need protection from unauthorized access. Whether you share your computer with family, work in an office, or just want extra security, locking apps prevents others from accessing your sensitive data.

Common reasons to lock apps:

  • Protect financial information in banking apps
  • Keep work documents confidential
  • Prevent children from accessing certain programs
  • Secure messaging apps with private conversations
  • Control access to social media accounts

Quick Answer: What Are Your Options?

Since Windows lacks native app-locking features, you have three main approaches:

  1. Third-party app lockers (easiest method)
  2. Windows built-in security features (limited but free)
  3. Administrative controls (good for shared computers)

Let’s explore each method in detail.

How to Lock Apps with Password in Windows

Method 1: Using Third-Party App Locking Software

Third-party software gives you the most flexibility and features for locking apps with passwords.

Best App Locking Tools for Windows

1. AppLocker (Free, Built into Windows Pro/Enterprise)

Windows Pro and Enterprise editions include AppLocker, which controls which applications users can run.

Steps to use AppLocker:

  1. Press Win + R and type gpedit.msc
  2. Navigate to Computer Configuration > Windows Settings > Security Settings > Application Control Policies > AppLocker
  3. Right-click “Executable Rules” and select “Create New Rule”
  4. Follow the wizard to select which apps to restrict
  5. Choose who can access the app (specific users only)

Limitations: Only available in Pro/Enterprise editions, requires Group Policy Editor.

2. Folder Guard

Folder Guard locks both folders and programs with password protection.

See also  How to Hotspot Your Phone to Laptop (iPhone & Android)

How to set up Folder Guard:

  1. Download and install Folder Guard from WinAbility.com
  2. Launch the program
  3. Click “File” > “Add File or Folder to Lock”
  4. Browse to the application’s .exe file (usually in C:\Program Files)
  5. Choose “Password protect” option
  6. Set your password
  7. Click “Apply”

Pros: User-friendly, supports password protection, hides files too
Cons: Paid software (trial available)

3. Protected Folder

IObit’s Protected Folder specifically locks files, folders, and applications.

Setup instructions:

  1. Install Protected Folder
  2. Open the program and set a master password
  3. Click “Add” and select “Add Application”
  4. Navigate to the program’s executable file
  5. Select the .exe file and click “OK”

When someone tries opening the locked app, they’ll need your password.

4. My Lockbox

This tool creates a password-protected area on your hard drive where you can place applications.

Configuration steps:

  1. Install My Lockbox
  2. Create a password-protected “lockbox” folder
  3. Move or install applications inside this folder
  4. Lock the folder

When locked, the folder and everything inside becomes invisible and inaccessible.

Choosing the Right Software

SoftwareCostEase of UseBest For
AppLockerFree (Pro/Enterprise)ModerateBusiness computers
Folder Guard$39.95EasyComplete protection
Protected Folder$19.95/yearVery EasySimple app locking
My LockboxFree (basic)EasyHiding apps completely

Method 2: Using Windows Built-in Security Features

Windows includes several security features that can help restrict app access, though they’re less direct than dedicated app lockers.

Setting Up Parental Controls (Family Safety)

Windows Parental Controls restrict which apps children can access.

Setup process:

  1. Go to Settings > Accounts > Family & other users
  2. Click “Add a family member”
  3. Create a child account
  4. Sign in to Microsoft Family Safety online
  5. Select the child’s account
  6. Go to “Apps and games” section
  7. Block specific applications

When this works: Only effective for child accounts, not for protecting apps from other adults.

Creating a Standard User Account

Limiting someone to a Standard account prevents them from accessing certain system applications.

Steps:

  1. Open Settings > Accounts > Family & other users
  2. Click “Add someone else to this PC”
  3. Create the new account
  4. Keep it as “Standard User” (don’t change to Administrator)
  5. Log into your admin account
  6. Right-click apps you want to protect
  7. Select Properties > Security tab
  8. Click “Edit” and remove permissions for the standard user

Limitations: Doesn’t password-protect, just restricts access. Technical users might bypass this.

Using BitLocker for App Folders

BitLocker encrypts entire drives, which indirectly protects apps stored there.

How to implement:

  1. Create a VHD (Virtual Hard Disk) file
  2. Enable BitLocker on the VHD
  3. Install applications to the encrypted VHD
  4. Unmount the drive when not in use

Reality check: This method is complex and better suited for protecting data files than everyday apps.

See also  How to Change Screen Resolution and Scaling in Windows

Method 3: Password-Protecting Specific App Types

Some applications have built-in password protection features you can activate.

Browsers

Google Chrome:

  1. Install an extension like “LockPW”
  2. Set a master password
  3. The browser locks after closing

Microsoft Edge:

  1. Use Windows Hello integration
  2. Enable “Require Windows Hello sign-in for autofill”

Office Applications

Microsoft Office apps support password protection for documents but not the applications themselves. However, you can:

  1. Enable “Always Prompt for Credentials” in Credential Manager
  2. Remove saved Office credentials
  3. Use Microsoft 365 with conditional access policies (business accounts)

Messaging Apps

Many messaging apps include app locks:

  • WhatsApp Desktop: No built-in lock (use third-party lockers)
  • Telegram Desktop: Settings > Privacy > Passcode Lock
  • Discord: No native lock feature

Creating Password-Protected Batch Files

For tech-savvy users, you can create a batch file that requires a password before launching an app.

Basic batch file example:

@echo off
set /p password="Enter Password: "
if %password%==YourPasswordHere (
start "" "C:\Path\To\Your\Application.exe"
) else (
echo Incorrect Password
pause
)

Instructions:

  1. Open Notepad
  2. Copy the code above
  3. Replace “YourPasswordHere” with your password
  4. Replace the path with your app’s location
  5. Save as “AppName.bat”
  6. Run the batch file instead of the regular app

Security note: This provides minimal security. Anyone viewing the batch file can see the password.

Advanced Security: Windows Sandbox

Windows Sandbox creates an isolated environment where you can run apps that automatically erase all changes when closed.

When to use Sandbox:

  • Testing unfamiliar applications
  • Browsing potentially risky websites
  • Temporary app access that you want to disappear

Enable Windows Sandbox:

  1. Open Control Panel
  2. Go to Programs > Turn Windows features on or off
  3. Check “Windows Sandbox”
  4. Restart your computer
  5. Launch Sandbox from the Start menu

Apps run in Sandbox don’t interact with your main system. When you close Sandbox, everything inside disappears.

Best Practices for App Security

Beyond locking apps, implement these security measures:

Create strong passwords:

  • Use at least 12 characters
  • Mix uppercase, lowercase, numbers, symbols
  • Avoid common words or personal information
  • Use a password manager like Bitwarden

Enable Windows Security features:

  • Turn on Windows Defender
  • Keep Windows updated
  • Enable firewall protection
  • Use Windows Hello for biometric login

Physical security matters:

  • Lock your computer when away (Win + L)
  • Enable sleep mode with password requirement
  • Use BIOS/UEFI password on laptops
  • Encrypt your hard drive with BitLocker

Regular maintenance:

  • Review installed applications monthly
  • Remove unused programs
  • Check startup programs
  • Monitor user accounts on your PC

Troubleshooting Common Issues

The App Still Opens Without a Password

Possible causes:

  • The app has multiple executable files
  • Someone bypassed protection using Safe Mode
  • The locking software isn’t running at startup

Solutions:

  1. Lock all executable files associated with the app
  2. Disable Safe Mode access (requires registry editing)
  3. Add your locking software to startup programs
See also  How to Create a Flowchart: A Complete Guide to Visual Process Mapping

Forgotten Password

If you forget your app lock password:

  1. Folder Guard: Use the password recovery feature (requires email setup)
  2. Protected Folder: Contact IObit support with proof of purchase
  3. AppLocker: Reset through Group Policy (admin access required)
  4. Batch files: Edit the .bat file to see or change password

Prevention: Always store passwords in a secure password manager.

Protected Apps Running Slowly

App locking software can impact performance slightly.

Optimization tips:

  • Exclude locking software from antivirus scans
  • Lock only essential apps, not everything
  • Ensure your locking software is updated
  • Check for conflicts with other security software

Someone Uninstalled My Locking Software

Protection strategies:

  1. Password-protect the locking software itself
  2. Use Windows parental controls to block uninstalling programs
  3. Remove admin rights from other users
  4. Hide the locking software’s program folder

Comparing App Locking Methods

MethodSecurity LevelDifficultyCostBest Use Case
Third-party softwareHighEasy$0-40General app protection
AppLockerHighModerateFree*Business environments
User accountsMediumEasyFreeFamily computers
Batch filesLowHardFreePersonal projects
Parental ControlsMediumEasyFreeProtecting from children
Windows SandboxHighModerateFreeTemporary isolation

*Requires Windows Pro/Enterprise

Legal and Ethical Considerations

Before locking apps on a computer, consider:

Workplace computers: Check your company’s IT policy. Some employers prohibit third-party security software.

Shared family computers: Be transparent with family members about what you’re protecting and why.

Privacy laws: If you’re locking apps on computers used by others, ensure you’re not violating privacy expectations.

Data protection regulations: Businesses handling customer data should implement proper access controls, which might require enterprise solutions beyond simple app locking.

Summary

Locking apps with passwords in Windows requires third-party solutions or creative use of built-in features. The easiest approach for most people is dedicated app-locking software like Protected Folder or Folder Guard. Business users with Windows Pro can utilize AppLocker for robust application control.

Remember that no solution is perfect. Determined users with technical knowledge might find workarounds. Combine app locking with other security practices like strong passwords, separate user accounts, and full-disk encryption for comprehensive protection.

Start with the method that matches your technical comfort level and specific needs. Most third-party tools offer free trials, so test them before purchasing.

Frequently Asked Questions

Can I lock apps on Windows 11 Home edition?

Yes, but you’ll need third-party software. Windows 11 Home doesn’t include AppLocker or Group Policy Editor. Use programs like Protected Folder, Folder Guard, or My Lockbox instead.

Will locked apps stay protected in Safe Mode?

Not always. Safe Mode often bypasses third-party security software. To prevent this, you must disable Safe Mode access through BIOS settings or registry modifications, which requires advanced knowledge.

Do app lockers work with Windows Store apps?

Most traditional app lockers struggle with UWP (Universal Windows Platform) apps from Microsoft Store. These apps use different file structures. Some newer locking software supports UWP apps, but check compatibility before purchasing.

Can someone bypass app locks by reinstalling Windows?

Reinstalling Windows removes all software, including app lockers. However, if you use BitLocker to encrypt your entire drive, your data remains protected even after reinstallation without the recovery key.

What happens if I forget my master password?

This depends on the software. Most paid programs offer password recovery options through email verification or support tickets. Free tools might not have recovery options. Always store your master password in a secure password manager or written in a safe location.

MK Usmaan