Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Fix: Your PIN Isn’t Available When Signing in Windows 11

August 18, 2026

Fix: Your PIN Isn’t Available When Signing in Windows 11

As Microsoft increasingly pushes Windows users toward Microsoft online accounts instead of traditional local accounts (see the workarounds for installing Windows 11 with a local account), more users are relying on Windows Hello PINs to sign in to their computers. In some cases, users may experience an error when trying to sign in to Windows 11 with a PIN:

Something happened and your PIN isn't available. Click to set up your PIN again.
Your PIN is no longer available due to a change in your security settings on this device, click to reset PIN.

Something happened and your PIN isn't available on Windows 11

This article explains what the PIN unavailable error means, what can cause it, and how to regain access to Windows when PIN sign‑in is no longer available

Before we continue, there are a few important details to understand about how Windows Hello PIN authentication works:

  • Unlike a Microsoft account (MSA) password, a Windows Hello PIN is a local cryptographic authenticator. It is bound to a specific device and is used to unlock a private key protected by the computer’s hardware TPM chip. If a TPM 2.0 chip is missing from the device, Windows 11 can still offer similar protection through Virtualization-Based Security (VBS).
  • Windows Hello credentials, including cryptographic keys and certificates, are stored in the protected Next Generation Credentials (NGC) container in the C:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Ngc folder
  • When a user enters their PIN on the Windows sign-in screen, Windows uses it to unlock the private key stored in the NGC container that is protected by the TPM. If authentication is successful, Windows uses the private key to generate a challenge-response signature, which is then used to authenticate the user.

Therefore, if the TPM becomes unavailable or its state or configuration changes (for example, after a UEFI firmware update or reset, TPM key reset, or disabling Secure Boot), Windows Hello PIN authentication will become unavailable and the PIN can no longer be used to sign in.

Below is a list of solutions that can help resolve common Windows Hello PIN sign-in problems in Windows 11.

Check the BIOS/UEFI and TPM Settings

Open the BIOS/UEFI settings on your device and check that both Secure Boot and TPM are enabled. If the compatibility mode (Legacy, CSM) is enabled in the UEFI firmware settings, Windows Hello PIN sign-in may not work properly. Disable the compatibility mode and use native UEFI boot with Secure Boot and TPM enabled.

Login Windows 11 Using Your Microsoft Account Password

If PIN sign-in isn’t available, you can sign in using your Microsoft account password instead.

Sign Windows with MSA password instead PIN

On the Windows sign-in screen, select Sign-in options and sign in to your Microsoft account using either your account password or a one-time verification code sent to your email address.

Sign-in options - Microsoft account verification

After successfully signing in to Windows, you can set a new Windows Hello PIN.

If other sign-in methods are not available on the Windows sign-in screen, or the option to authenticate with your Microsoft account does not appear, you can add a password sign-in option to the Windows sign-in screen using the Windows Recovery Environment (WinRE) or Windows installation media (such as a USB stick).

  1. Boot into the WinRE and open a command prompt.
  2. Open the Registry Editor (regedit.exe), then go to File -> Load Hive and load the SOFTWARE registry file stored in the C:\Windows\System32\Config directory. load local registry hive
  3. In the mounted registry hive, navigate to the \Microsoft\Windows NT\CurrentVersion\PasswordLess\Device and change the DevicePasswordLessBuildVersion value to 0. DevicePasswordLessBuildVersion
  4. Then go to \Microsoft\PolicyManager\default\Settings\AllowSignInOptions and set the Value registry entry to 0
  5. Unload the registry hive.
  6. Restart the computer and check that the Microsoft account password option appears on the Windows 11 sign-in screen. Add the option to login with Microsoft account password on Windows 11 sign in screen
  7. Log in to Windows with your Microsoft account (MSA) password and set a new PIN, first deleting the old one (Settings -> Accounts -> Sign-in options -> PIN -> Remove). remove Windows Hello PIN

Core System Services Required for Windows Hello PIN

For Windows Hello PIN sign-in to work, the following Windows services must be running:

  • CNG Key Isolation – CNG stands for Cryptography Next Generation API:
  • Credential Manager

Sign in to the computer using any other account (if necessary, you can enable the built-in local Administrator account in Windows). Check the status of both services and make sure they are running.

Get-Service KeyIso, VaultSvc

If any of these services are stopped, the user will not be able to log in with a PIN or biometric. Set these services to start automatically or manually (on demand).

Check CNG Key Isolation service in Windows 11

These services can be set to start automatically if you boot the computer from external media:

  1. Open the Registry Editor and load the local registry hive five C:\Windows\System32\config\SYSTEM
  2. Go to the mounted hive and navigate to ControlSet001\Services\KeyIso
  3. Find the KeyIso and VaultSvc service subkeys, then change the Start parameter value to 3 in each one. This means that these services will start automatically.KeyIso service startup
  4. Unload the registry hive, then reboot the computer.

Windows Hello PIN is not Available in Safe Mode

If Windows is configured to boot into Safe Mode, PIN sign-in will not be available. As the services and components required for Windows Hello authentication do not start in Safe Mode, you must use an alternative sign-in method.

To disable Safe Mode:

  1. Hold down the Shift key on the sign-in screen, then click the Restart button.
  2. From the startup settings screen, select Troubleshoot and then open the Command Prompt.
  3. To stop the computer from booting into Safe Mode, change the bootloader configuration by running the command: bcdedit /deletevalue {default} safeboot
  4. Restart the computer and try logging in using a PIN.

Clean the NGC Folder

To reset all the keys and certificates used for Windows Hello PIN authentication for all users on the computer, clear the contents of the NGC directory.

To do this, boot the computer into the Windows Recovery Environment or WinPE and run the following commands.

 The examples below assume that the Windows system volume has been assigned the drive letter C: in WinPE. If you are unsure which drive letter has been assigned to the volume containing the Windows installation, you can list the available volumes and their drive letters using:

wmic logicaldisk get caption, deviceid, description

wmic logicaldisk get caption - identify local volume drive letters

Run the following commands one by one:

takeown /f C:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Ngc /r /d y
icacls C:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Ngc /grant *S-1-5-32-544:F /t
RD /S /Q C:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Ngc
MD C:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Ngc
icacls C:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Ngc /T /Q /C /RESET

Restart the computer. Sign in to your account using your MSA password and then set up a new PIN.

0 comment
0
Facebook Twitter Google + Pinterest
Questions and AnswersWindows 11
previous post
Enable or Disable Fast User Switching in Windows 11

Related Reading

How to Move (Migrate) Windows Shares to a...

February 26, 2026

SMB over QUIC: Mount File Share over Internet...

December 24, 2025

Security Warnings When Opening RDP Files in Windows...

April 20, 2026

Monitor Windows Log Files in Real Time with...

March 26, 2026

Stop Windows Server from Auto-Shutdown Every Hour

February 11, 2026

Automate Software and Settings Deployment with WinGet Configure...

November 20, 2025

Remove the Max Path Length Limit (260-Characters) on...

November 19, 2025

Updating UEFI Secure Boot Certificates on Windows Devices...

April 27, 2026

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Enable or Disable Fast User Switching in Windows 11

    August 18, 2026
  • How to Hide Wi-Fi Network in Windows with WLAN Filters (Blacklist and Whitelist)

    August 14, 2026
  • Invalid Signature Detected: Check Secure Boot Policy [Fix]

    August 5, 2026
  • Windows Installer Service Could Not Be Accessed? How to Fix It

    July 28, 2026
  • Why Windows Reports No Internet Access: How Connectivity Detection Works

    July 26, 2026
  • Inactive TS Ports in Windows: Causes and Fixes

    July 20, 2026
  • Add Wireless Wi-Fi Profiles on Windows Devices via Export/Import or GPO

    July 13, 2026
  • CrowdSec on Windows: From Installation to Threat Blocking

    July 3, 2026
  • Manage Microsoft Store Apps with Store CLI in Windows 11 from Terminal

    July 2, 2026
  • Windows Sandbox on Windows 11: Enable, Configure, and Use

    June 10, 2026

Follow us

  • Facebook
  • Twitter
  • Youtube
  • Telegram
Popular Posts
  • Converting Windows 10 to Enterprise LTSC Without Losing Data
  • How to Remove ‘Some Settings are Managed by Your Organization’ on Windows 11 or 10
  • Remove the Max Path Length Limit (260-Characters) on Windows
  • Installing Windows without USB/DVD or Other External Drives
  • How to Pause (Delay) Update Installation on Windows 11 and 10
  • Get the Computer Uptime (Last Boot Time) on Windows
  • Microsoft Office 2024 LTSC: How to Download, Install, & Activate
Footer Logo

@2014 - 2026 - Windows OS Hub. All about operating systems for sysadmins


Back To Top