[REPO] Windows 10 TELEMETRY REPOSITORY

Discussion in 'Windows 10' started by Yen, Aug 4, 2015.

  1. drew84

    drew84 MDL Expert

    Mar 13, 2014
    1,397
    2,378
    60
    @kyrcy any chance you could wrap those logs in
    Code:
    .............
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    == delete mount and scratch folders ==
    Press any key to continue . . .
    
    drop down menu, third ftom right when posting
     
  2. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    I don't see a drop down menu when replying.
     
  3. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    #2043 kyrcy, Dec 12, 2023
    Last edited: Dec 12, 2023
    I added updates to install.wim, but I get the errors above when running your script. Can you offer any advice?
     
  4. schubidubi

    schubidubi MDL Junior Member

    Nov 9, 2022
    79
    87
    0
    @freddie-o

    Maybe you can help me?

    I created the EnterpriseG 19041.1 install.wim, but now i struggle with integrating updates.

    Can you tell me which updates i need, to make it up2date?


    Greetings :)
     
  5. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    Can you give more details?
    Are you using the right (disable_telemetry) script for your Windows edition
    Also it looks like you modified the script... maybe there errors in the script
    It's best to use Windows 10 for offline servicing. I get "Removal failed" errors when using Windows 11
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. SunLion

    SunLion MDL Addicted

    May 11, 2011
    676
    1,670
    30
    #2046 SunLion, Dec 12, 2023
    Last edited: Dec 12, 2023
    deleted
     
  7. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    #2047 kyrcy, Dec 12, 2023
    Last edited: Dec 12, 2023
    I am using the right (disable_telemetry) script, but latest build is 22631 and the script is 22621.
    The script was modified for troubleshooting and there were errors with the unmodified script too including "Error: 15610 Removal failed. Please contact your software vendor.".
    Is there a reason to use Windows 10 for offline servicing when LTSC exist?
     
  8. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    #2048 kyrcy, Dec 12, 2023
    Last edited: Dec 12, 2023
    No problem, I appreciate all your help. Is that Enterprise / Education that you downloaded and tested, as the script you are attaching?
     
  9. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    #2049 freddie-o, Dec 12, 2023
    Last edited: Dec 12, 2023

    What I did was update my EnterprsieG 19041.1 to 19045.2965.
    afaik it's not recommended to directly update from 19041.1 to the the latest CU
    I use this updated install.wim as my base for future updates

    19045. 2965 CU

    SSU (SSU-19041.2905-x64.cab)
    CU (Windows10.0-KB5026361-x64.cab)
    EP (Windows10.0-KB5015684-x64.cab)
    NET Framework (Windows10.0-KB5022502-x64-NDP48.cab)

    Try this

    Download PowerRun

    Use these scripts

    begin_updating.cmd
    Code:
    @echo off
    pushd "%~dp0"
    PowerRun_x64.exe update.cmd

    update.cmd
    Code:
    @echo off
    
    rem == create mount and scratch folders ==
    mkdir mount
    mkdir temp
    
    rem == mount install.wim ==
    dism /mount-wim /wimfile:install.wim /index:1 /mountdir:mount
    
    rem == add cumulative updates ==
    dism /scratchdir:temp /image:mount /add-package:SSU-19041.2905-x64.cab
    dism /scratchdir:temp /image:mount /add-package:Windows10.0-KB5026361-x64.cab
    dism /scratchdir:temp /image:mount /add-package:Windows10.0-KB5015684-x64.cab
    dism /scratchdir:temp /image:mount /add-package:Windows10.0-KB5022502-x64-NDP48.cab
    
    rem == save and unmount wim ==
    dism /unmount-wim /mountdir:mount /commit
    
    rem == rebuild the install.wim ==
    dism /Export-Image /SourceImageFile:install.wim /SourceIndex:1 /DestinationImageFile:install2.wim /checkintegrity /Compress:max
    del /f /q install.wim
    ren install2.wim install.wim
    
    pause
    exit


    Put all the files in a folder
    update.png


    Code:
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19041.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack_2905~31bf3856ad364e35~amd64~~19041.2905.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19041.1
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~19041.2965.1.8
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19041.2965
    
    Processing 1 of 1 - Adding package Package_for_KB5015684~31bf3856ad364e35~amd64~~19041.1799.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19045.2965
    
    Processing 1 of 1 - Adding package Package_for_DotNetRollup~31bf3856ad364e35~amd64~~10.0.4614.6
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image File : F:\update\install.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Press any key to continue . . .
    


    EDIT
    Important Note
    Did you backup and restore the "Licenses" when reconstructing EnterpriseG?
    Otherwise you won't be able to install
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    The 22621 script will work with 22631
    LTSC should work --- it's Windows 10 --- In my experience Windows 11 will not allow removing some components
    What's causing the errors must be on your end because I don't get any
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    #2051 kyrcy, Dec 12, 2023
    Last edited: Dec 12, 2023
    What does the "Error: 15610 Removal failed. Please contact your software vendor." mean? Are the components that Windows 11 will not allow removing, disabled after running your script? Would there be a problem if I run your script, without updating install.wim, in case that is causing the errors?
     
  12. schubidubi

    schubidubi MDL Junior Member

    Nov 9, 2022
    79
    87
    0
    Many thx! :hug2:



    Whoops, which license? Where do i find the license to backup?
     
  13. SunLion

    SunLion MDL Addicted

    May 11, 2011
    676
    1,670
    30
    #2053 SunLion, Dec 12, 2023
    Last edited: Dec 12, 2023
    deleted
     
  14. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    I extracted install.wim from the ISO to use with the modified script (without integrating any updates) and still the "Error: 15610 Removal failed. Please contact your software vendor." appears. For the "The system cannot find the file specified.", do I need to have unnatend.xml in the same folder? See attachment.
     

    Attached Files:

  15. SunLion

    SunLion MDL Addicted

    May 11, 2011
    676
    1,670
    30
    #2055 SunLion, Dec 12, 2023
    Last edited: Dec 12, 2023
    deleted
     
  16. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
  17. SunLion

    SunLion MDL Addicted

    May 11, 2011
    676
    1,670
    30
    #2057 SunLion, Dec 12, 2023
    Last edited: Dec 12, 2023
    deleted
     
  18. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60

    Windows\System32\en-US\Licenses
    Backup the Licences folder and rename Professional to EnterpriseG in _Default, OEM and Volume folders (after mounting the install wim) then restore after reconstruction (before unmounting the install wim)

    I use this script to backup and rename
    Code:
    rem == backup and rename licenses folders ==
    xcopy /S /E /I /H /R /Y /J mount\Windows\System32\en-US\Licenses temp\Licenses
    ren temp\Licenses\_Default\Professional EnterpriseG
    ren temp\Licenses\OEM\Professional EnterpriseG
    ren temp\Licenses\Volume\Professional EnterpriseG

    to restore
    Code:
    rem == add enterpriseG licenses ==
    rd /s /q mount\Windows\System32\en-US\Licenses
    xcopy /E /C /H /R /Y /I temp\Licenses mount\Windows\System32\en-US\Licenses
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    235
    11
    10
    I think 22631.2428 (version 23H2).
     
  20. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    The updates shouldn't be causing the errors.
    Run the unmodified script(s) as Trusted Installer in a Windows 10 environment
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...