Skip to main content

Posts

Showing posts from 2018

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 sa...

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 .

How to change password of windows using CMD??

Steps to Change windows password using CMD?? 1.  Open CMD as a Administrator. 2. Type Few commands as followed in Screenshot. 3.  Exit after successfully changing Password. We can Also change password of another users replacing username in place of Administrator.

How to activate office 2016 using script ??

How to activate office 2016 using script ?? 1. Copy the following script in notepad and save as .bat . 2. Run the bat file as administrator. @echo off title Permanently Activate Office 365 ProPlus for FREE - Somethingos.blogspot.incom&cls&echo ============================================================================&echo #Project: Activating Microsoft software products without software&echo ============================================================================&echo.&echo #Supported products: Office 365 ProPlus (x86-x64)&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16...

How to Bypass windows password on logon screen?

How to Bypass windows password on logon screen? Kon-Boot  is an application which will silently bypass the authentication process of Windows based operating systems. Without overwriting your old password! In other words you can login to your Windows profile without knowing your password. Easy to use and excellent for tech repairs, data recovery and security audits. Steps  : 1. Download kon-boot from here . 2. Extract in a folder and connect a USB pendrive. 3. Right click on usb_install-RUNASADMIN and run as administrator. 4. Here is your USB ready and boot the system. 5. Leave password blank and press enter. you will find system log on.

Windows setup could not configure to run on this computer's hardware.

Windows setup could not configure to run on this computer's hardware.   Windows 7,8,8.1,10 At the error screen, press Shift+F10 to open a command prompt. Type cd \ and press Enter. Type cd c:\windows\system32\oobe and press Enter. Type msoobe and press Enter. The installation process should now automatically continue. Remove the installation media and the system should finish the installation, boot into Windows and ask for create a username & password.   

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...

Windows could not complete installation. To install on this computer please restart.

How to remove error while installing windows : windows could not complete installation. To install on this computer please restart. Steps :  1. Press Shift + F10. (It will Command Prompt) 2. Use following commands                    >net user administrator /active:yes                                      >net user administrator 1234         here 1234 is password for Admin User 3. Then exit command Prompt. Alternate Option :  1. Open cmd using Shift + F10  2. Open  Local Security Policy console  Using secpol.msc Apply user name and Password for admin User, Disable password for guest User.