Skip to main content

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.






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