To change the administrator password on a virtual machine (VM) with a Windows OS, 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
      CODE

      The result of the command execution:

    2. Mount the required partition:

      mount /dev/vda2 /mnt
      CODE

      /dev/vda2 — partition with Windows

  4. Go to the directory with the system configuration files:

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

    chntpw -l SAM
    CODE

    The result of the command execution:

    RID — account ID

    Admin? — is the user the administrator?

  6. Run the chntpw utility to reset the password:

    chntpw -u 0x01f4 SAM
    CODE

    01f4 — administrator account ID

  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
    CODE

    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.