Share via

How To Log On Without the Internet

Anthony Kingsbury 20 Reputation points
2026-04-25T03:34:20.84+00:00

How can I log on without a pin or internet connection?

Windows for home | Other | Security and privacy

Answer accepted by question author

  1. Marcin Policht 87,985 Reputation points MVP Volunteer Moderator
    2026-04-25T11:05:55.1566667+00:00

    To bypass the PIN requirement when you have no internet access, you can use the Windows Recovery Environment to activate the hidden Administrator account. Start by holding the Shift key while clicking the Restart button on the login screen. Once the computer reboots into the blue recovery menu, navigate through Troubleshoot and then Advanced options to select Command Prompt. You will need to determine which drive letter contains your Windows installation, as it often shifts to D: or E: in this mode. You can check this by typing a drive letter followed by a colon and then typing the directory command until you see the Windows and Users folders.

    Once you have identified the correct drive, you need to replace the Accessibility shortcut on the login screen with the Command Prompt. Assuming your Windows drive is C:, enter the following commands sequentially.

    c: 
    cd windows\system32
    ren utilman.exe utilman.exe.bak
    copy cmd.exe utilman.exe
    

    After entering these commands, close the window and restart your computer to boot normally. When you reach the login screen, click the Accessibility icon in the bottom right corner, which looks like a person or a circle. This will now open a Command Prompt window with system-level privileges. You can then enable the built-in Administrator account, which does not have a PIN or password by default, by typing the following command.

    net user administrator /active:yes
    

    Close the command prompt and restart the computer again. You should now see an Administrator account in the bottom left corner of the screen. Select it to log in directly to the desktop. Once logged in, you will have access to File Explorer to install your WiFi or Ethernet drivers from a USB flash drive. After the drivers are installed and you have an active internet connection, you can switch back to your original user account and follow the prompts to set up a new PIN through your Microsoft account.

    To clean up the system once you are finished, you should disable the built-in Administrator account and restore the original Accessibility tool. Open a Command Prompt as an administrator within Windows and run the following commands to reverse the changes.

    net user administrator /active:no
    cd c:\windows\system32
    del utilman.exe
    ren utilman.exe.bak utilman.exe
    

    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anthony Kingsbury 20 Reputation points
    2026-04-26T11:37:17.6233333+00:00

    Found a solution. I used my android smart phone as an ethernet "router". Steps taken;

    1. Connect phone to computer using a USB cable.
    2. On your phone go to SETTINGS - CONNECTIONS -MOBILE HOTSPOT AND TETHERING.
    3. Turn on USB TETHERING
    4. Start your computer. It will recognize you phone as your WiFi device.

    You can now reset the PIN and download/install your drivers.

    Restart your computer with the phone disconnected and go into Windows to add the motherboards WiFi device.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.