1. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    272
    288
    10
    #17321 sergey130270, Nov 10, 2020
    Last edited: Nov 10, 2020
    Thank you for your attention, unfortunately the reg file does not work
     
  2. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    272
    288
    10
  3. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,734
    240
    hmm it wouldn't be easier to download Fast Stone Viewer only my 2 cents
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    272
    288
    10
    Thank you very much, now I will try
     
  5. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    272
    288
    10
    #17326 sergey130270, Nov 10, 2020
    Last edited: Nov 10, 2020
    I want to integrate it into the install.wim
     
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Then it is already present in the Toolkit, just use Customize->Apply Tweaks->Enable Windows Photo Viewer

     
  7. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    272
    288
    10
    #17328 sergey130270, Nov 10, 2020
    Last edited: Nov 10, 2020
    Can I use this command?

    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E regedit.exe /s REG IMPORT "%~dp0Tweaks\PhotoViewerWindows10.reg"
     
  8. Bokeron

    Bokeron MDL Novice

    Dec 20, 2011
    24
    7
    0

    1. Thanks for the info! I didn't even consider sysprep for the ESD distributed thru MCT. Now that makes sense.
    I am not familiar with that method though, so what I'm trying could be impossible, but I wonder if I could mount that install.wim and modify something to force Edge to not be installed at all... last time I tried to remove some folder or file regarding Edge in that image the install process throwed a hardware error!

    2. Regarding applying updates in the proper order for the 19042.610 image from uupdump... that takes out the guesswork and as such is easier. I don't know what KB is Cumulative, Dynamic, Enablement... I have these:

    kb4577266
    kb4562830
    kb4579305
    kb4580364

    Could you please tell me what goes where?

    3. And... If I leave them at the $OEM$ folder... I will be able to remove packages from the offline image as there's nothing pending, but then those updates won't apply and I'll end up wth an 19041.1 install. Did I understand that?

    4. Last question. If I integrate those updates... then I won't be able to remove individual packages from the offline image as there are pending operations... so that method forces me to install the OS with only what your software can remove as it seems DISM isn't gonna work there. Is that right?
     
  9. ingviowarr

    ingviowarr MDL Senior Member

    Dec 14, 2009
    345
    362
    10
    #17334 ingviowarr, Nov 10, 2020
    Last edited: Nov 11, 2020
    Finalized my LTSC tests:

    - Last WU (*.msu) files were applied flawlessly over live system in oflline mode
    - No apps returned back
    - No SFC errors at any stage: MSMG + removing System Apps -> ISO -> Setup -> Installing WU files

    Note: Additional removal of the CloudExperienceHost for the current User (live OS) hasn't been tested yet.

    I don't see any reason do not use LTSC.
    I don't see any reason to use a new builds (full of errors that should be fixed in the next century).
     

    Attached Files:

  10. ingviowarr

    ingviowarr MDL Senior Member

    Dec 14, 2009
    345
    362
    10
    #17335 ingviowarr, Nov 11, 2020
    Last edited: Nov 11, 2020
    Also updated my suggestion Screenshot for the rescent Windows builds.
    Description for CredDialogHost and notification how to remove Windows Hello completely were added.

    (I have more descriptions for Apps. If smb. need this, just say, I'll prepear for posting on English)
     
  11. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    477
    274
    10
    Rather than starting from scratch I settled on restoring a a base image which has OS and drivers and nothing more. I'm getting too old to be climbing under desks to disconnect drives especially when I have to remove the GPU to get at one of the M.2 drives.

    • Backup current system (1x Image + 1x user data)
    • Restore base image
    • Update to 17763.1397
    • Manual install image created with toolkit that has Defender in it at patch level 1397
    • Run my post install script to put back all user data, apply tweaks and install programs.
    • Reinstall Office.
    • Test
    • Create a backup image

    Everything seems to be working fine.

    Thanks to @MSMG, @Ace2 and @Ingviowarr
     
  12. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,861
    1,521
    60
    19041.1.191206-1406.VB_RELEASE_CLIENTCORE_OEMRET_X64FRE_EN-US from uup dump.

    1.
    Code:
    mounted install.wim
    sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Result:
    Microsoft Windows [Version 10.0.19042.572]
    (c) 2020 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Beginning system scan.  This process will take some time.
    
    Windows Resource Protection did not find any integrity violations.

    2.
    Code:
    dism /image:C:\mount /add-package /packagepath:C:\updates\windows10.0-kb4577266-x64.cab
    sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Result:
    Microsoft Windows [Version 10.0.19042.572]
    (c) 2020 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\updates\windows10.0-kb4577266-x64.cab
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19041.1
    
    Processing 1 of 1 - Adding package Package_for_KB4577266~31bf3856ad364e35~amd64~~19041.504.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Beginning system scan.  This process will take some time.
    
    Windows Resource Protection did not find any integrity violations.

    3.
    Code:
    dism /image:C:\mount /add-package /packagepath:C:\updates\windows10.0-kb4579311-x64.cab
    sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Result:
    Microsoft Windows [Version 10.0.19042.572]
    (c) 2020 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\updates\windows10.0-kb4579311-x64.cab
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19041.1
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~19041.572.1.8
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Beginning system scan.  This process will take some time.
    
    Windows Resource Protection did not find any integrity violations.

    4.
    Code:
    dism /image:C:\mount /add-package /packagepath:C:\updates\windows10.0-kb4562830-x64.cab
    sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Result:
    Microsoft Windows [Version 10.0.19042.572]
    (c) 2020 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\updates\windows10.0-kb4562830-x64.cab
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19041.572
    
    Processing 1 of 1 - Adding package Package_for_KB4562830~31bf3856ad364e35~amd64~~10.0.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>sfc /verifyonly /offbootdir=C:\mount /offwindir=C:\mount\windows
    
    Beginning system scan.  This process will take some time.
    
    There is a system repair pending which requires reboot to complete.  Restart
    Windows and run sfc again.

    5.
    Code:
    installed updated install.wim [untouched by ToolKitHelper]
    sfc /verifyonly
    dism /online /cleanup-image /startcomponentcleanup
    dism /online /cleanup-image /startcomponentcleanup /resetbase
    dism /online /cleanup-image /restorehealth
    SFC /SCANNOW
    
    Results:
    Microsoft Windows [Version 10.0.19042.572]
    (c) 2020 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>sfc /verifyonly
    
    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 /startcomponentcleanup
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19042.572
    
    [=                          2.9%                           ]
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>dism /online /cleanup-image /startcomponentcleanup /resetbase
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.572
    
    Image Version: 10.0.19042.572
    
    [==========================100.0%==========================]
    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.572
    
    [==========================100.0%==========================] The restore operation completed successfully.
    The operation completed successfully.
    
    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 found corrupt files and successfully repaired them.
    For online repairs, details are included in the CBS log file located at
    windir\Logs\CBS\CBS.log. For example C:\Windows\Logs\CBS\CBS.log. For offline
    repairs, details are included in the log file provided by the /OFFLOGFILE flag.
    
    corrupt files= is owned twice or has its security set twice
     
  13. Supern00b

    Supern00b MDL Addicted

    Dec 30, 2010
    762
    556
    30
    Rofl that comment.
    Not on topic (sorry) but can relate, I just hate it when that has to be done.

    Cheers.
     
  14. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Yes you can use it for live systems, if for offline images then you need to modify the reg hives to mounted ones.