skharlamov
Member
- May 8, 2025
- 28
Hello, recenly we have started installation of Microsoft Exchange cumulative update 15 using our automation and on step "Desktop experience prerequisite check" the task fails. Basically this role checks the presence of necessary Windows roles, features and components and in case they are not installed it tries to install them. Once of the components is called NET-Framework-45-Features and one of its components is MSMQ services. At this point it fails to install MSMQ services because of error "Assembly not found".
We fix it by searching CBS logs and if we find something like "Info CBS Failed to pin deployment while resolving Update: Package_4254_for_KB5017315~31bf3856ad364e35~amd64~10.0.1.5.5017315-7836_neutral from file: (null) [HRESULT = 0x80073701 - ERROR_SXS_ASSEMBLY_MISSING]" we download this KB, and run the following:
expand C:\xfer\windows10.0-kb5017315-x64_611c310985bee4d193a714e702a47b5422918914.msu /f:* C:\xfer\kb5017315
dism /online /add-package /packagepath:C:\xfer\kb5017315\SSU-17763.3232-x64.cab #SSU package needs to be installed first
dism /online /add-package /packagepath:C:\xfer\kb5017315\Windows10.0-kb5017315-x64.cab
after that run
We fix it by searching CBS logs and if we find something like "Info CBS Failed to pin deployment while resolving Update: Package_4254_for_KB5017315~31bf3856ad364e35~amd64~10.0.1.5.5017315-7836_neutral from file: (null) [HRESULT = 0x80073701 - ERROR_SXS_ASSEMBLY_MISSING]" we download this KB, and run the following:
expand C:\xfer\windows10.0-kb5017315-x64_611c310985bee4d193a714e702a47b5422918914.msu /f:* C:\xfer\kb5017315
dism /online /add-package /packagepath:C:\xfer\kb5017315\SSU-17763.3232-x64.cab #SSU package needs to be installed first
dism /online /add-package /packagepath:C:\xfer\kb5017315\Windows10.0-kb5017315-x64.cab
after that run
- Install-WindowsFeature NET-Framework-45-Features