Skip to main content

How to break Windows password using Ubuntu?

How to break Windows password using Ubuntu?

1. Boot machine with Ubuntu and run as live.

2. Open Terminal, set root password and switch user as root in terminal.

3. Install chntpw graphically or by using command

         #apt-get install chntpw

                      or

          #apt install chntpw

4. Create a directory with any name.

          #mkdir /abc

5. Mount C drive to abc directory.

           #ntfs-3g mount /dev/sda1 /abc -o force

6. locate sam file

           #cd /abc/Windows/System32/config

7. use command:
           #chntpw -l                   //to list users
           #chntpw -u administrator sam

and select 1,2,3,4 options as required.




Do comment if any error occurs.

 to try different way follow link : Method 1 and Method 2




Comments

Popular posts from this blog

Activate windows 10 without software, Using .bat script

Here is a way to activate Windows 10 using Script. # Make sure you're connected with Internet. #  Open notepad,  paste the script save as file abc.bat and run as administrator. @echo off title Windows 10 &cls&echo ************************************ &echo Copyright: Sudhir: 2018  &echo.&echo Supported products:&echo - Windows 10 Home&echo - Windows 10 Professional&echo - Windows 10 Enterprise,&echo - Windows 10 Education&echo.&echo.&echo ************************************ &echo Windows 10 activation... cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WVR >nul cscript //nologo c:\windows\system32\slmgr.vbs /i...

breaking user name & password of windows

How to break user name password:-      Restart      Boot from DVD or USB drive        Then start installation        Click on repair              Click on CMD #Use the following commands >   C: >   Dir >   Cd windows\system32 >   Ren cmd.exe cmd.old >   Ren magnify.exe magnify.old >   Ren magnify.old cmd.exe >   Ren cmd.old magnify.exe >   Exit - Restart -     Open magnifier then apply If your commands are right then cmd will open otherwise magnifier. > Net user > net user administrator 12345@1 >   Exit Now your password will reset.                                  

How to add or delete user in CMD??

How to add or delete user in CMD?? 1. Run CMD as Administrator . 2. Type following commands to add a use :           >net user test /add                >net user test /enable:yes         >net user test 123@test here test is a user and 123@test is password. 3. To delete :          >net user test /delete