Skip to main content

Posts

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
Recent posts

How to Check Windows Up time and last boot time??

How to Check Windows Up time and last boot time?? 1. Run CMD as Administrator. 2. Type commands :       C:\WINDOWS\system32>systeminfo | findstr /c:"System Boot Time"       System Boot Time:          10/22/2018, 11:59:10 AM And For Last Boot time :  C:\WINDOWS\system32>wmic os get lastbootuptime

How to Fix Temporary Profile in Windows 7

How to Fix Temporary Profile in Windows 7?? 1. Open Run and type regedit.exe 2. Move in registry in following path :           Computer \HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion\ ProfileList 3. Find two profile name with same name with one's ext. is .bak and another is without ext. 4. Delete both profile and restart. 5. Then profile will rebuild and everything will work fine.

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

How to assign Static IP in Windows?

How to assign Static IP in Windows? 1. Open Run ,  type ncpa.cpl in run menu. 2. Right Click Local Area Network or Ethernet . 3. Find and click on Internet Protocol Version 4 (TCP/IPv4) then Select Properties . 4. Choose Use the Following IP Address.   Use Class B IP address like below   IP                   : 192.168.0.2 Subnet Mask : 255.255.255.0 Gateway is not Required for Sharing.

How to Share data between two windows PC?

How to Share data between two windows PC? PC 1 1. Assign Static IP like 192.168.0.2 2. Right Click on folder which you want share. 3. Click on Sharing , then Advance Sharing . 4. Tick Check Mark on Share this folder and change permissions as you want. 5. Click Apply and then ok . PC 2 1. Open Run , Window + R 2. Browse IP by typing \\192.168.0.2 in Run .