- There is no configuration-based permanent fix in Windows for an ISP that performs TLS interception on Windows Update endpoints. When DISM or Windows Update needs repair content and cannot use a local source, it contacts Windows Update or a repair source as documented. If the network path is being intercepted or broken by the ISP, the only reliable workarounds are to use a different network path (such as a hotspot) or a secure tunnel that bypasses the interception. DISM itself has only two modes in this regard:
- Use online sources (Windows Update or a configured repair source).
- Use only local sources with
/LimitAccessand explicit/Sourcepaths. If the required payload is not present locally and the online path is untrustworthy or blocked, there is no additional built-in mechanism to override the ISP behavior.
- DISM can restore or enable features from a local source if the payload exists there. The documented mechanism is:
- Use
/Source:<path>to point to a local WIM or folder that contains the feature payload, optionally with/LimitAccessto prevent contacting Windows Update:Dism /Online /Enable-Feature /FeatureName:TFTP /Source:Z:\sources\SxS /LimitAccess - For offline servicing, the same applies against a mounted image:
Dism /Image:C:\test\offline /Enable-Feature /FeatureName:TFTP /Source:C:\test\mount\windows
- Use
- Component store corruption and pending actions are explicitly called out as limitations for servicing operations. When packages are in an install-pending state or dependencies are missing, subsequent actions (including adding packages or performing upgrades) can fail until the pending or corrupted state is resolved. The documentation notes that:
- When installing a package in an offline image, the package state can be “install pending,” and subsequent actions cannot be processed until previous pending actions are completed.
- Some packages require other packages to be installed first, and dependencies must be satisfied, often via an answer file. Given that the Hyper-V and WSL packages are missing and DISM reports the component store as repairable but cannot find repair content, this corruption can affect other servicing operations, including upgrades. The context does not provide a specific mapping between error 0x8007042B - 0x2000D and this corruption, but it does establish that unresolved package and component store issues can block further servicing.
- The context does not describe a public schedule or mechanism for when Features on Demand for specific Insider builds (such as 26200.7840) are published, nor does it provide a documented way to check availability of those FOD packages per build beyond attempting DISM operations that contact Windows Update or a configured repair source. The available guidance is:
- Use
DISM /Online /Cleanup-Image /ScanHealthand/RestoreHealthto detect and repair component store issues, optionally with a local/Source. - Use
DISM /Online /Enable-Featureor/Disable-Featurewith appropriate sources and, if needed, an answer file. - For servicing images, ensure version compatibility between DISM and the target image and rely on configured repair sources or Windows Update when payloads are not in the base image. No additional mechanism for tracking Insider FOD publication status is documented in the provided context.
- Use
References: