Repair install for win 10 failing

Page 1 of 10 123 ... LastLast

  1. Posts : 47
    Win 10
       #1

    Repair install for win 10 failing


    I have Win 10 home ,version 20H2,Build 19042.685. I want to do a repair install be to no avail. I have the win .iso from the Creation kit on a usb drive.I mounted it and tried numerous time running it but not working. Windows update is messed up and I would like to do a repair install to hopefully to fix.Any help would be appreciated. I ran sfc,sfcfix,and all dism commands to try and fix this but to no avail. Any help would be appreciated. Either to fix win update or to do a repair install to save all my programs and apps.
      My Computer


  2. Posts : 8,316
    windows 10
       #2

    Check out tutor see if that helps Repair Install Windows 10 with an In-place Upgrade
      My Computer


  3. Posts : 6,858
    Windows 11 Pro - Windows 7 HP - Lubuntu
       #3

    Please explain what happens when you run setup.exe from running windows.
    Any error messages?
    Did you disabled anti virus?
    Do you have or had any update blocker?
      My Computers


  4. Posts : 41,978
    windows 10 professional version 1607 build 14393.969 64 bit
       #4

    1) List and uninstall all non-Microsoft antivirus software
    (This includes always on and manual software.)
    (This includes running the applicable antivirus uninstall tools for any AV that could have been incompletely uninstalled)
    https://www.bitdefender.com/consumer...t/answer/2625/

    2) List and uninstall all non-Microsoft firewall software

    3) List all Microsoft and non-Microsoft drive encryption software.
    Uninstall all non-Microsoft disk encryption software

    4) Run:

    V2: BSOD - Posting Instructions

    Tuneup.bat - Click here to go to the BSOD batch repository to download and run this batch file.
      My Computer


  5. Posts : 47
    Win 10
    Thread Starter
       #5

    Code:
    Code:
    ###########################################################
    # The following commands will be run in sequence.         #
    # The first 5 will take quite a while to run, be patient. #
    ###########################################################
    
    sfc /scannow
    dism /online /cleanup-image /scanhealth
    dism /online /cleanup-image /restorehealth
    sfc /scannow
    
    chkdsk /scan
    
    wmic recoveros get autoreboot
    wmic recoveros set autoreboot = false
    wmic recoveros get autoreboot
    wmic recoveros get DebugInfoType
    wmic recoveros set DebugInfoType = 7
    wmic recoveros get DebugInfoType
    
    wmic pagefile list /format:list
    wmic Computersystem where name="ZIGGYB" get AutomaticManagedPagefile
    wmic Computersystem where name="ZIGGYB" set AutomaticManagedPagefile=True
    wmic Computersystem where name="ZIGGYB" get AutomaticManagedPagefile
    
    bcdedit /enum {badmemory}
    
    
    C:\Windows\system32>sfc /scannow
    
    Beginning system scan.  This process will take some time.
    
    Beginning verification phase of system scan.
    Verification 100% complete.
    
    Windows Resource Protection did not find any integrity violations.
    
    C:\Windows\system32>dism /online /cleanup-image /scanhealth
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19042.685
    
    [==========================100.0%==========================] The component store is repairable.
    The operation completed successfully.
    
    C:\Windows\system32>dism /online /cleanup-image /restorehealth
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19042.685
    
    [==========================100.0%==========================]
    Error: 0x800f081f
    
    The source files could not be found.
    Use the "Source" option to specify the location of the files that are required to restore the feature. For more information on specifying a source location, see https://go.microsoft.com/fwlink/?LinkId=243077.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    C:\Windows\system32>sfc /scannow
    
    Beginning system scan.  This process will take some time.
    
    Beginning verification phase of system scan.
    Verification 100% complete.
    
    Windows Resource Protection did not find any integrity violations.
    
    C:\Windows\system32>chkdsk /scan
    The type of the file system is NTFS.
    Volume label is Windows.
    
    Stage 1: Examining basic file system structure ...
      591360 file records processed.
    File verification completed.
     Phase duration (File record verification): 2.82 seconds.
      7790 large file records processed.
     Phase duration (Orphan file record recovery): 0.00 milliseconds.
      0 bad file records processed.
     Phase duration (Bad file record checking): 0.16 milliseconds.
    
    Stage 2: Examining file name linkage ...
      55912 reparse records processed.
      804982 index entries processed.
    Index verification completed.
     Phase duration (Index verification): 7.19 seconds.
      0 unindexed files scanned.
     Phase duration (Orphan reconnection): 623.48 milliseconds.
      0 unindexed files recovered to lost and found.
     Phase duration (Orphan recovery to lost and found): 0.30 milliseconds.
      55912 reparse records processed.
     Phase duration (Reparse point and Object ID verification): 89.02 milliseconds.
    
    Stage 3: Examining security descriptors ...
    Security descriptor verification completed.
     Phase duration (Security descriptor verification): 63.95 milliseconds.
      106812 data files processed.
     Phase duration (Data attribute verification): 0.47 milliseconds.
    CHKDSK is verifying Usn Journal...
      41785712 USN bytes processed.
    Usn Journal verification completed.
     Phase duration (USN journal verification): 108.57 milliseconds.
    
    Windows has scanned the file system and found no problems.
    No further action is required.
    
     487334907 KB total disk space.
     360269008 KB in 362705 files.
        232928 KB in 106813 indexes.
             0 KB in bad sectors.
        717915 KB in use by the system.
         65536 KB occupied by the log file.
     126115056 KB available on disk.
    
          4096 bytes in each allocation unit.
     121833726 total allocation units on disk.
      31528764 allocation units available on disk.
    Total duration: 10.91 seconds (10915 ms).
    
    C:\Windows\system32>wmic recoveros get autoreboot
    AutoReboot
    FALSE
    
    
    C:\Windows\system32>wmic recoveros set autoreboot = false
    Updating property(s) of '\\ZIGGYB\ROOT\CIMV2:Win32_OSRecoveryConfiguration.Name="Microsoft Windows 10 Home|C:\\Windows|\\Device\\Harddisk0\\Partition3"'
    Property(s) update successful.
    
    C:\Windows\system32>wmic recoveros get autoreboot
    AutoReboot
    FALSE
    
    
    C:\Windows\system32>wmic recoveros get DebugInfoType
    DebugInfoType
    7
    
    
    C:\Windows\system32>wmic recoveros set DebugInfoType = 7
    Updating property(s) of '\\ZIGGYB\ROOT\CIMV2:Win32_OSRecoveryConfiguration.Name="Microsoft Windows 10 Home|C:\\Windows|\\Device\\Harddisk0\\Partition3"'
    Property(s) update successful.
    
    C:\Windows\system32>wmic recoveros get DebugInfoType
    DebugInfoType
    7
    
    
    C:\Windows\system32>wmic pagefile list /format:list
    
    
    AllocatedBaseSize=16384
    CurrentUsage=0
    Description=C:\pagefile.sys
    InstallDate=20201022073900.971459-240
    Name=C:\pagefile.sys
    PeakUsage=0
    Status=
    TempPageFile=FALSE
    
    
    
    
    C:\Windows\system32>wmic Computersystem where name="ZIGGYB" get AutomaticManagedPagefile
    AutomaticManagedPagefile
    TRUE
    
    
    C:\Windows\system32>wmic Computersystem where name="ZIGGYB" set AutomaticManagedPagefile=True
    Updating property(s) of '\\ZIGGYB\ROOT\CIMV2:Win32_ComputerSystem.Name="ZIGGYB"'
    Property(s) update successful.
    
    C:\Windows\system32>wmic Computersystem where name="ZIGGYB" get AutomaticManagedPagefile
    AutomaticManagedPagefile
    TRUE
    
    
    C:\Windows\system32>bcdedit /enum {badmemory}
    
    RAM Defects
    -----------
    identifier              {badmemory}
    
    C:\Windows\system32>Echo off
       ###################################################################################
       #    How to capture batch file data and post in your thread in the BSOD forum     #
       #                                                                                 #
       #      Batch files and instructions for use in BSOD debugging[Part Two-Four]      #
       #                                                                                 #
       #        Press [V] to visit the above web page for detailed instructions.         #
       #        Press [C] to close this window.                                          #
       ###################################################################################
    
    
    Press any key to continue . . .
    - - - Updated - - -

    I hope I did this properly. Also adding this .rar file

    - - - Updated - - -

    I uninstalled Panda Dome AV, Also spywareblaster and malwarebyes. I only used malwarebytes for scanning purposes only.
    Repair install for win 10 failing Attached Files
    Last edited by lucydog; 01 Apr 2021 at 20:55. Reason: added file
      My Computer


  6. Posts : 41,978
    windows 10 professional version 1607 build 14393.969 64 bit
       #6

    Window Error Reporting (WER) was missing or cleaned.
    Was third party cleaning software or disk cleanup recently used?

    There were 7 unexpected shutdowns and restarts in the last 30 days.
    Were any manual power offs done related to hangs / freezes?




    1) Upgrade the BIOS: 1202 > 1602
    PRIME Z490-P|Motherboards|ASUS USA

    2) Open disk management > by default some columns are compressed > widen each Status and Volume > make sure the contents within the parenthesis are in full view and that none of the characters are cutoff > view disk 0 > widen this row as needed so that all of the characters are in full view > post an image into the thread
    https://www.tenforums.com/tutorials/...creenshot.html

    3) Download and install Minitool Partition Wizard > click launch > post an image of the results into this thread
    MiniTool Partition Wizard Free Edition - Free download and software reviews - CNET Download
    MiniTool Portable Partition Magic Brings Easier Disk Management

    4) Run:

    DiskParInfo.bat - Click here to go to the BSOD batch repository to download and run this batch file.


    5) Search for:

    C:\Windows\Logs\CBS\CBS.log
    and
    CBSPersist

    > post share links


    6) Update the specs in the "My Computer" section:

    System Specs - Fill in at Ten Forums
    In the left corner below in your post you find 'My System Specs'.
    After clicking it you can find a link a little below that says 'Update your System Spec', click on this link to get to the page where you can fill in your system specs.
    System Info - See Your System Specs - Windows 7 Help Forums

    Include PSU. cooler, case, peripherals and anything attached to the computer by wired or wireless (mouse, keyboard, headset, printer, xbox, USB wireless network card, etc.)
      My Computer


  7. Posts : 47
    Win 10
    Thread Starter
       #7

    zbook with all due respect I will post tomorrow. I currently have to leave home now. I will post tomorrow for sure. As far as cleaning I use cCleaner on occasion and as far as shutdowns go. I play a few rpg's and i beleive they were caused by my game freezing.
      My Computer


  8. Posts : 41,978
    windows 10 professional version 1607 build 14393.969 64 bit
       #8

    Okay.

    Open administrative command prompt (ACP) and type or copy and paste:

    winmgmt /verifyrepository
    wmic /Node:localhost /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct Get displayName

    When these have completed > right click on the top bar or title bar of the administrative command prompt box > left click on edit then select all > right click on the top bar again > left click on edit then copy > paste into the thread
    Last edited by zbook; 01 Apr 2021 at 22:10.
      My Computer


  9. Posts : 44,117
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #9

    I have the win .iso from the Creation kit on a usb drive.
    Hi, do you mean this is the old Creators build?

    You can only perform an in-place upgrade repair install with an iso file (or bootable disk after logging in first) of the same major build as you have now.. namely 20H2.

    You can download a 20H2 iso file using the
    MS media creation tool (Google - or see tutorial on how to get an iso file for Win 10).

    Unfortunately you haven't quoted the error message you see when you attempt the in-place upgrade repair install.

    Before you do this you should also check your disk(s) so as to ensure you are not going to waste your time, given the apparent corruption you mention.

    E.g. Hard Disk Sentinel (trial), SSDs too - excellent report right on its GUI
    or
    Crystal Diskinfo (free) - basic.
      My Computers


  10. Posts : 47
    Win 10
    Thread Starter
       #10

    Bios update was successful. Attached files as requested I downloaded the Windows creation Kit .iso. Also There were no errors during repair install. Started, don't think it updated any updates,never rebooted, and "windows installation failed". It appears that the repair install just went through the motions. Crystal Disk Info has shown all driver are fine. No problems

    Microsoft Windows [Version 10.0.19042.685]
    (c) 2020 Microsoft Corporation. All rights reserved.

    C:\Windows\system32>winmgmt /verifyrepository
    WMI repository is consistent

    C:\Windows\system32>wmic /Node:localhost /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct Get displayName
    displayName
    Windows Defender


    C:\Windows\system32>
    Attached Thumbnails Attached Thumbnails Repair install for win 10 failing-2021-04-02-17_11_39-minitool-partition-wizard-free-12.3.png   Repair install for win 10 failing-2021-04-02-17_08_35-.png   Repair install for win 10 failing-2021-04-02-15_20_42-disk-management.png  
    Repair install for win 10 failing Attached Files
    Last edited by lucydog; 02 Apr 2021 at 16:55. Reason: add text
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 07:14.
Find Us




Windows 10 Forums