VMmanager Knowledge Base

How to reset password on a Windows VM?

To change the administrator password on a virtual machine (VM) with a Windows OS, in the VMmanager interface go to Virtual Machines → select VM → menu → Change Password and enter the new password.

In some cases, such as OS failures, the password may not change. In this case, you can reset the password in recovery mode.

This article contains instructions that can cause the OS to malfunction. Use recovery mode only if the password is not reset through the platform interface.

Example of resetting the password in Windows Server 2019

  1. Set the VM to recovery mode: Virtual machines → select the VM → menu → Recovery modeStart mode and reboot.
  2. Wait until the recovery mode is started and connect to the VM via VNC or SPICE: Virtual machines → select the VM → menu → VNC (SPICE).
  3. After booting SystemRescueCD, mount the Windows partition:
    1. Enter the command to display all partitions:

      fdisk -l

      The result of the command execution:

    2. Mount the required partition:

      mount /dev/vda2 /mnt
      Comments to the command
  4. Go to the directory with the system configuration files:

    cd /mnt/Windows/System32/config/
  5. Display the list of Windows users:

    chntpw -l SAM

    The result of the command execution:

    Comments
  6. Run the chntpw utility to reset the password:

    chntpw -u 0x01f4 SAM
    Comments to the command
  7.  If the account is locked, the utility menu will contain the item "2 — Unlock and enable user account (probably locked now)". In this case enter "2" to unlock the account.
  8. Enter "1" to reset the account password.
  9. Enter "q" to exit the utility and "y" to save the changes made.
  10. Check the result of the utility actions:

    chntpw -l SAM

    The result of the command execution:

    The "BLANK" status for the Administrator user means that the password has been reset.

  11. Disable the VM's recovery mode: Virtual machines → select the VM → menu → Recovery modeDisable mode and reboot.

  12. Connect to the VM via VNC or SPICE and set a new password using the OS tools.