Blog | G5 Cyber Security

Add User from Windows Installation Disk

TL;DR

Yes, you can add a new user to an unencrypted Windows installation from the Windows installation disk using the command prompt during setup. However, it’s not straightforward and requires navigating the recovery environment.

Adding a User From the Installation Disk

  1. Boot from the Installation Media: Insert your Windows installation disc or USB drive and restart your computer. Make sure your BIOS/UEFI is set to boot from this media.
  2. Access Command Prompt: On the “Install Now” screen, press Shift + F10. This will open a command prompt window.
  3. Identify the Windows Drive: The drive letter assigned to your Windows installation may not be C:. Use the following commands to identify it:
    diskpart
    list volume

    Look for the volume with a label like “Windows” or the largest size. Note its drive letter (e.g., D:, E:). Type exit to leave diskpart.

  4. Create the User Account: Use the net user command. Replace ‘username‘ with the desired username and ‘password‘ with a strong password:
    net user username password /add
  5. Add User to Administrators Group (Optional): If you want the new user to have administrator privileges, use this command. Replace ‘username‘ with the username created in the previous step:
    net localgroup administrators username /add
  6. Verify User Creation: You can verify the account creation using:
    net user

    This will list all users on the system. Check if your new username appears in the list.

  7. Exit Command Prompt and Continue Setup: Type exit to close the command prompt. You can now continue with the Windows installation or restart your computer. The newly created user should be available for login after setup is complete.

Important Considerations

Exit mobile version