How to Reset the Password of a Windows VM

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

    .1Set the VM to recovery mode: Virtual machines → select the VM → menu → Recovery modeStart mode and reboot.
    .2Wait until the recovery mode is started and connect to the VM via VNC or SPICE: Virtual machines → select the VM → menu → VNC (SPICE).
    .3After booting SystemRescueCD, mount the Windows partition:
    .aEnter the command to display all partitions:
fdisk -l
The result of the command execution:
Mount the required partition:
mount /dev/vda2 /mnt
 /dev/vda2 — partition with Windows
    .4Go to the directory with the system configuration files:
cd /mnt/Windows/System32/config/
    .5Display the list of Windows users:
chntpw -l SAM
The result of the command execution:
 RID — account ID
 Admin? — is the user the administrator?
    .6Run the chntpw utility to reset the password:
chntpw -u 0x01f4 SAM
 01f4 — administrator account ID
    .7If 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.
    .8Enter "1" to reset the account password.
    .9Enter "q" to exit the utility and "y" to save the changes made.
    .10Check 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.
    .11Disable the VM's recovery mode: Virtual machines → select the VM → menu → Recovery modeDisable mode and reboot.
    .12Connect to the VM via VNC or SPICE and set a new password using the OS tools.