How to solve Components Scanner reporting thousands of missing registry keys

Why are you searching under the CBS subkey? The issue is the "winning" components are missing and will need to be sourced from a known good machine. You'll want to look under:

Code:
HKLM\COMPONENTS\DerivedData\Components

Um, because you last indicated checking here. And because I assumed ComponentsScanner was already checking the COMPONENTS hive, particularly, DerivedData.

And I'm not finding a "winning" subkey in the COMPONENTS hive on either the failing server or the repair server. Did you mean "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners"?
 
FYI, for anyone interested in my PowerShell script that creates something close to a registry export format, here is my latest version. I'm going to be putting this on GitHub, I just haven't gotten around to it yet. Just run it and provide a different -Regkey, -Like and -Server to suit your own needs. And pipe to Out-File 'filename.reg' to save the results to a *.reg file.

Code:
# Written by: mjmeans 2023-06-27
# - Updated 2023-06-28
#   Added ability to -Verbose
#   Added support for binary values
#   Removed $file parameter. Just pipe output to Out-File 'filename.reg'

[cmdletbinding()]
param (
    $Regkey = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing',
    $Like = '*.4650*',
    $Server = 'localhost'
)

$out = Invoke-Command -ComputerName $server -ArgumentList $regkey,$like -ScriptBlock {
    param ($regkey,$like)
    $VerbosePreference_original = $VerbosePreference
    $VerbosePreference = 'continue'
    Write-Verbose "Searching $regkey"
    Get-ChildItem $regkey -Recurse -Verbose | Where-Object {($_.Name -like $like)} | 
        foreach {
            $k = $_
            Write-Verbose "Processing key $k"
            Write-Output "`r`n[$k]"
            foreach ($p in $_.Property) {
                Write-Verbose "- Processing property $p"
                $v=$k.GetValue($p,$null)
                if ($v -ne $null) {
                    $t=$k.GetValueKind($p)
                    if ($t -eq 'String') {$tv="""$($v -replace('\\','\\') -replace('\"','\"'))"""}
                    elseif ($t -eq 'Dword') {$tv="dword:$("{0:x8}" -f $v)"}
                    elseif ($t -eq 'Binary') {$tv=($v|ForEach-Object ToString X2) -join ','}
                    else {throw "unexpected registry value type: `n`r Key: $k`r`n Property: $p`r`n Type: $t`r`n Value: $v"}
                    Write-Output """$p""=$tv"
                }
            }
        } 
    }
Write-Verbose "Completed"
Write-Output "Windows Registry Editor Version 5.00"
Write-Output $out
 
I asked you to check a particular subkey under CBS which was Version and ComponentsScanner only looks for bitflips in the Components subkey. It only presents warnings if a key exists but its associated directory doesn't and vice versa.

The log lines mentioned in my previous post are the "winning" components but since the CBS log displays the full name, you'll have to check which ones are greater than 40 characters and then truncate them to find the subkey name which will be used in the registry. They will all be missing from the hive which having the issues but should hopefully exist in the repair hive.
 
I was confused by your quoting "winning" and spent too much time looking for that exact string.

Okay, since all the missing keys start with the same 19 characters and two dots I exported all "*Microsoft-Windows-S..*.4650_*" from both and ran a diff. The failing server does have a few of them. A few that exist on both have missing f! or c! on the failing server.

Should I import the keys (including all properties/values including c! and f! as well) for the keys that are completely missing from the failing server AND are listed in the CBS log?

What should I do with the keys that exist on the failing server but have missing c! and/or f! properties/values compared to the repair server?

I suppose it's fortunate that I don't find any changed c! and f! properties/values between the two.
 
Also, there is one key I found on the repair server that matches the pattern "*Microsoft-Windows-S..*.4650_*", and is missing on the failing server, but is not listed in the CBS log section you pointed me to:
[HKEY_LOCAL_MACHINE\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..cingstack.resources_31bf3856ad364e35_10.0.14393.4650_en-us_02458e54ef7b3321]

Should this key be imported as well?

Also, the registry export from the repair server are all in Unicode encoding. Is character encoding important in this area of the COMPONENTS hive and should it be converted to ASCII before importing?
 
Well I did import them all, include the c! and f! values. After making a backup of course. DISM restore health now progresses to almost 80% (originally quit at less than 10%). The CBS.log shows the following:
Code:
2023-07-03 15:43:12, Error                 CBS    Package "Package_for_KB5012170~31bf3856ad364e35~amd64~~14393.5285.1.4" requires Servicing Stack v10.0.14393.5285 but current Servicing Stack is v10.0.14393.4650. [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Info                  CBS    Failed to initialize internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Error                 CBS    Failed to create internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Info                  CBS    Failed to CreatePackage using worker session [HRESULT = 0x800f0823]
2023-07-03 15:43:12, Info                  CBS    Failed to create internal CBS Package [HRESULT = 0x800f0823]
2023-07-03 15:43:12, Info                  CBS    WU creates the package, AppID:TrustedInstaller MCR, UpdateID:{E8CDEBCC-E2C3-417F-A2FE-E033BEA24132}, revision: 200
2023-07-03 15:43:12, Info                  CBS    Session: 31043071_3208960363 initialized by client WindowsUpdateAgent, external staging directory: (null), external registry directory: (null
2023-07-03 15:43:12, Error                 CBS    Package "Package_for_KB5012170~31bf3856ad364e35~amd64~~14393.5285.1.4" requires Servicing Stack v10.0.14393.5285 but current Servicing Stack is v10.0.14393.4650. [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Info                  CBS    Failed to initialize internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Error                 CBS    Failed to create internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Info                  CBS    Failed to CreatePackage using worker session [HRESULT = 0x800f0823]
2023-07-03 15:43:12, Info                  CBS    Failed to create internal CBS Package [HRESULT = 0x800f0823]
2023-07-03 15:43:12, Info                  CBS    WU creates the package, AppID:TrustedInstaller MCR, UpdateID:{E8CDEBCC-E2C3-417F-A2FE-E033BEA24132}, revision: 200
2023-07-03 15:43:12, Info                  CBS    Session: 31043071_3209000404 initialized by client WindowsUpdateAgent, external staging directory: (null), external registry directory: (null
2023-07-03 15:43:12, Error                 CBS    Package "Package_for_KB5012170~31bf3856ad364e35~amd64~~14393.5285.1.4" requires Servicing Stack v10.0.14393.5285 but current Servicing Stack is v10.0.14393.4650. [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Info                  CBS    Failed to initialize internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Error                 CBS    Failed to create internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED]
2023-07-03 15:43:12, Info                  CBS    Failed to CreatePackage using worker session [HRESULT = 0x800f0823]
2023-07-03 15:43:12, Info                  CBS    Failed to create internal CBS Package [HRESULT = 0x800f0823]
...
2023-07-03 17:52:26, Info                  CSI    00000007 Hashes for file member \SystemRoot\WinSxS\amd64_netfx4-microsoft_wi..applications_45_man_b03f5f7f11d50a3a_4.0.15744.161_none_f574c3afe5869d9e\Microsoft.Windows.ApplicationServer.Applications.45.man do not match actual file [l:55]'Microsoft.Windows.ApplicationServer.Applications.45.man' :
  Found: {l:20 gig2WNpoa2O/XcHN1GHRSBpRBMY=} Expected: {l:20 pCC3wKe4na/iz02ti++ZNcguzhM=}
  Found: {l:32 18QACBXWxpBgTDlc2uw1CjRKOCQZLHqP5h+OuUruEDo=} Expected: {l:32 mZF9Uk0XfDR2ycdhoD1yfwqKEhrXs3TOQWSTBLWA2vU=}
2023-07-03 17:56:50, Info                  CSI    00000008 Hashes for file member \SystemRoot\WinSxS\amd64_netfx4-servicemodel_mof_files_b03f5f7f11d50a3a_4.0.15744.551_none_514f7180b308c377\ServiceModel.mof do not match actual file [l:16]'ServiceModel.mof' :
  Found: {l:20 HTNyqrUhdQwWJ6kVuDLfvzLRM3U=} Expected: {l:20 4fQRiIlG8/xB4dva5Ho2HXROQGc=}
  Found: {l:32 A22M3aNrt0AR46IjipFMnkvhZzhw1Yjllfp5SE6p/Ag=} Expected: {l:32 +f7HcsANt6IRSnyoZ/XX15k1uCXosWFuZrIpZNPfnOg=}
2023-07-03 18:11:15, Info                  CSI    00000009@2023/7/4:01:11:15.625 Corruption detection complete. numCorruptions = 2, Disp = 1.
2023-07-03 18:11:15, Info                  CBS    Repr: CSI meta data corruption found, will commit repair transaction if repair is asked.
2023-07-03 18:11:15, Info                  CSI    0000000a@2023/7/4:01:11:15.744 CSI Transaction @0x208a1b70430 initialized for deployment engine {d16d444c-56d8-11d5-882d-0080c847b195} with flags 00000000 and client id 'TI5.31043083_3423328186:1/'
...
=================================
Checking System Update Readiness.

(p)    CSI Payload Corrupt            amd64_netfx4-microsoft_wi..applications_45_man_b03f5f7f11d50a3a_4.0.15744.161_none_f574c3afe5869d9e\Microsoft.Windows.ApplicationServer.Applications.45.man
Repair failed: Missing replacement payload.
(p)    CSI Payload Corrupt            amd64_netfx4-servicemodel_mof_files_b03f5f7f11d50a3a_4.0.15744.551_none_514f7180b308c377\ServiceModel.mof
Repair failed: Missing replacement payload.
The indicated *.man and *.mof files do not exist in the repair server.
 
I then checked the service stack requirement mentioned near the top. It is KB5017095. There are \Windows\servicing\packages for this KB on the failing server, but that KB is not shown.

Other windows updates, such as cumulative updates, are working now. But servicing stack updates still fail.
 
Those two corrupt payload files will be part of a .NET Framework 4.X update, if you find the corresponding component in the COMPONENTS and then look up c! mark under the Deployments subkey then it should hopefully tell you which KB number it belongs to. If it doesn't, then it will have been added as a feature instead.
 
tl;dr: The version does appear to be a feature and some .net framework updates were installed on the failing server. Which I suppose is the reason for the Missing replacement payload. i.e. Maybe whichever was the next update in the chain is actually what if missing.

What I found was:
  • I see the file C:\Windows\WinSxs\Manifests\amd64_netfx4-microsoft_wi..applications_45_man_b03f5f7f11d50a3a_4.0.15744.161_none_f574c3afe5869d9e.manifest on both servers and the contents match.
  • The subkey amd64_netfx4-microsoft_wi..applications_45_man_b03f5f7f11d50a3a_4.0.15744.161_none_f574c3afe5869d9e exists on both servers and the contents match.
  • The file C:\Windows\WinSxS\amd64_netfx4-microsoft_wi..applications_45_man_b03f5f7f11d50a3a_4.0.15744.161_none_f574c3afe5869d9e\Microsoft.Windows.ApplicationServer.Applications.45.man exists on both servers but the contents do not match. The repair server has a 12 byte file which I assume is a stub that points to a replacement payload that is missing.
  • Without knowing how to track which versions should be installed in the chain I decided to download all netfx KBs for Windows Server 2016, create a lst file of all of them in order from oldest to newest, and create a PS script to read the lst, install them /quiet /noreboot, and log which ones installed and which ones failed. I then ran the script on the repair server to assure that it has them all and then on the failing server (since normal installations are working, it's just servicing stacks ones, sfc scannow, and dism repair that are not).
So after this, hopefully, the state of netfx on both machines will be updated to the same current KB level. My plan is then to compare all COMPONENTS entries under any subkey that refers to netfx4, and all files or folders referring to netfx4 under \Windows\WinSxS.
 
Last edited:
Here's the SFCFix batch for repairing those two corrupt payload files, they're part of the Microsoft .NET Framework 4.8 for Windows 10 version 1607, Windows 10 version 1703 and Windows Server 2016 - Microsoft Support update.

SFCFix Script

Warning: this fix is specific to the user in this thread. No one else should follow these instructions as it may cause more harm than good. If you are after assistance, please start a thread of your own.

  1. Download SFCFix.exe (by niemiro) and save this to your Desktop.
  2. Download the file below, SFCFix.zip, and save this to your Desktop. Ensure that this file is named SFCFix.zip - do not rename it.
  3. Save any open documents and close all open windows.
  4. On your Desktop, you should see two files: SFCFix.exe and SFCFix.zip.
  5. Drag the file SFCFix.zip onto the file SFCFix.exe and release it.
  6. SFCFix will now process the script.
  7. Upon completion, a file should be created on your Desktop: SFCFix.txt.
  8. Copy (Ctrl+C) and Paste (Ctrl+V) the contents of this file into your next post for me to analyse please - put [CODE][/CODE] tags around the log to break up the text.

Afterwards, please run DISM again and let me know if it fails or not.
 

Attachments

I compared the files before applying them. They are identical to the ones on my repair server VM. Is it always the case that the *.man and *.mof and *.manifest files can always be replaced with fresh files from a repair server? i.e. they are static and should never change?
 
Status update:
  1. DISM /restorehealth completes, but SFC still fails. This time at about 40%. SFC.log has numerous 'cannot repair' messages.
  2. I tried wusa installing all the servicing stack updates available from Microsoft Update Catalog in order of oldest to newest. I expected all the older ones to fail installation due to being already installed. And I was hoping was that the dism restorehealth completing would have repaired enough of the image to get the newer servicing stacks installed. But what happened was strange. One of the older ones, KB4562561, installed! This Kb has 10.0.14393.3744 and is one that should have already been superseded by .4222 and .4650.

For all of the 'cannot repair' in cbls.log, can they just be copied over to the failing server, or is it more complicated than that?

Code:
  C:\Windows\Logs\CBS\CBS.log (358 hits)
    Line  98418: 2023-07-08 02:56:32, Info                  CSI    000012be [SR] Cannot repair member file [l:16]'CompositeBus.inf' of compositebus.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  98486: 2023-07-08 02:56:37, Info                  CSI    00001302 [SR] Cannot repair member file [l:16]'CompositeBus.inf' of compositebus.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  98732: 2023-07-08 02:57:05, Info                  CSI    000013f8 [SR] Cannot repair member file [l:9]'kdnic.inf' of dual_kdnic.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98733: 2023-07-08 02:57:06, Info                  CSI    000013f9 [SR] Cannot repair member file [l:11]'msmouse.inf' of dual_msmouse.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98734: 2023-07-08 02:57:06, Info                  CSI    000013fa [SR] Cannot repair member file [l:12]'sermouse.sys' of dual_msmouse.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98735: 2023-07-08 02:57:06, Info                  CSI    000013fb [SR] Cannot repair member file [l:13]'npsvctrig.inf' of dual_npsvctrig.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98736: 2023-07-08 02:57:08, Info                  CSI    000013fc [SR] Cannot repair member file [l:10]'swenum.inf' of dual_swenum.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98769: 2023-07-08 02:57:15, Info                  CSI    0000141d [SR] Cannot repair member file [l:9]'kdnic.inf' of dual_kdnic.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98782: 2023-07-08 02:57:15, Info                  CSI    0000142a [SR] Cannot repair member file [l:11]'msmouse.inf' of dual_msmouse.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98783: 2023-07-08 02:57:15, Info                  CSI    0000142b [SR] Cannot repair member file [l:12]'sermouse.sys' of dual_msmouse.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98809: 2023-07-08 02:57:16, Info                  CSI    00001445 [SR] Cannot repair member file [l:13]'npsvctrig.inf' of dual_npsvctrig.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  98814: 2023-07-08 02:57:16, Info                  CSI    0000144a [SR] Cannot repair member file [l:10]'swenum.inf' of dual_swenum.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:14]'dualModeDriver' in the store, file is missing
    Line  99365: 2023-07-08 02:58:17, Info                  CSI    00001671 [SR] Cannot repair member file [l:7]'fdc.inf' of fdc.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  99366: 2023-07-08 02:58:23, Info                  CSI    00001672 [SR] Cannot repair member file [l:12]'flpydisk.inf' of flpydisk.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  99367: 2023-07-08 02:58:23, Info                  CSI    00001673 [SR] Cannot repair member file [l:11]'sfloppy.sys' of flpydisk.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  99368: 2023-07-08 02:58:23, Info                  CSI    00001674 [SR] Cannot repair member file [l:11]'FunDisc.mof' of FunDisc, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99369: 2023-07-08 02:58:25, Info                  CSI    00001675 [SR] Cannot repair member file [l:24]'vmictimeprovider.dll.mui' of HyperV-IntegrationServices.resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99370: 2023-07-08 02:58:27, Info                  CSI    00001676 [SR] Cannot repair member file [l:17]'licensingdiag.exe' of Microsoft-Client-Licensing-Platform-Client, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99371: 2023-07-08 02:58:27, Info                  CSI    00001677 [SR] Cannot repair member file [l:14]'oemlicense.dll' of Microsoft-Client-Licensing-Platform-Client, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99378: 2023-07-08 02:58:27, Info                  CSI    0000167e [SR] Cannot repair member file [l:7]'fdc.inf' of fdc.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  99403: 2023-07-08 02:58:28, Info                  CSI    00001697 [SR] Cannot repair member file [l:12]'flpydisk.inf' of flpydisk.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  99404: 2023-07-08 02:58:28, Info                  CSI    00001698 [SR] Cannot repair member file [l:11]'sfloppy.sys' of flpydisk.inf, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35}, type [l:12]'driverUpdate' in the store, file is missing
    Line  99410: 2023-07-08 02:58:28, Info                  CSI    0000169e [SR] Cannot repair member file [l:11]'FunDisc.mof' of FunDisc, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99417: 2023-07-08 02:58:28, Info                  CSI    000016a5 [SR] Cannot repair member file [l:24]'vmictimeprovider.dll.mui' of HyperV-IntegrationServices.resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99481: 2023-07-08 02:58:29, Info                  CSI    000016e4 [SR] Cannot repair member file [l:17]'licensingdiag.exe' of Microsoft-Client-Licensing-Platform-Client, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99482: 2023-07-08 02:58:29, Info                  CSI    000016e5 [SR] Cannot repair member file [l:14]'oemlicense.dll' of Microsoft-Client-Licensing-Platform-Client, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99489: 2023-07-08 02:58:45, Info                  CSI    000016ec [SR] Cannot repair member file [l:10]'pcasvc.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99490: 2023-07-08 02:58:45, Info                  CSI    000016ed [SR] Cannot repair member file [l:10]'pcalua.exe' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99491: 2023-07-08 02:58:45, Info                  CSI    000016ee [SR] Cannot repair member file [l:11]'pcaevts.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99492: 2023-07-08 02:58:45, Info                  CSI    000016ef [SR] Cannot repair member file [l:9]'pcadm.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99493: 2023-07-08 02:58:45, Info                  CSI    000016f0 [SR] Cannot repair member file [l:9]'pcaui.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant-UI, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99494: 2023-07-08 02:58:46, Info                  CSI    000016f1 [SR] Cannot repair member file [l:16]'activeds.dll.mui' of Microsoft-Windows-Active-Directory-Services-Interface-Router.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99499: 2023-07-08 02:58:56, Info                  CSI    000016f6 [SR] Cannot repair member file [l:10]'pcasvc.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99500: 2023-07-08 02:58:56, Info                  CSI    000016f7 [SR] Cannot repair member file [l:10]'pcalua.exe' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99501: 2023-07-08 02:58:56, Info                  CSI    000016f8 [SR] Cannot repair member file [l:11]'pcaevts.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99502: 2023-07-08 02:58:56, Info                  CSI    000016f9 [SR] Cannot repair member file [l:9]'pcadm.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99575: 2023-07-08 02:59:00, Info                  CSI    0000173a [SR] Cannot repair member file [l:9]'pcaui.dll' of Microsoft-Windows-Application-Experience-Program-Compatibility-Assistant-UI, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99632: 2023-07-08 02:59:03, Info                  CSI    0000176e [SR] Cannot repair member file [l:16]'activeds.dll.mui' of Microsoft-Windows-Active-Directory-Services-Interface-Router.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99654: 2023-07-08 02:59:05, Info                  CSI    00001784 [SR] Cannot repair member file [l:11]'adsldpc.dll' of Microsoft-Windows-Active-Directory-Services-Interface-LDAPC-Layer, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99678: 2023-07-08 02:59:28, Info                  CSI    0000179c [SR] Cannot repair member file [l:11]'adsldpc.dll' of Microsoft-Windows-Active-Directory-Services-Interface-LDAPC-Layer, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99776: 2023-07-08 02:59:40, Info                  CSI    000017f9 [SR] Cannot repair member file [l:6]'bi.dll' of Microsoft-Windows-BrokerInfrastructureClient, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99777: 2023-07-08 02:59:44, Info                  CSI    000017fa [SR] Cannot repair member file [l:10]'blbres.dll' of Microsoft-Windows-BLB-Engine-Proxy-Main, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99778: 2023-07-08 02:59:49, Info                  CSI    000017fb [SR] Cannot repair member file [l:16]'certpdef.dll.mui' of Microsoft-Windows-CertificateServices-CA-Certpdef.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99779: 2023-07-08 02:59:49, Info                  CSI    000017fc [SR] Cannot repair member file [l:19]'resources.en-US.pri' of Microsoft-Windows-Cortana.Desktop.AppxMain.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99780: 2023-07-08 02:59:49, Info                  CSI    000017fd [SR] Cannot repair member file [l:15]'certxds.dll.mui' of Microsoft-Windows-CertificateServices-CA-certxds.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99786: 2023-07-08 02:59:52, Info                  CSI    00001803 [SR] Cannot repair member file [l:19]'resources.en-US.pri' of Microsoft-Windows-Cortana.Desktop.AppxMain.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99799: 2023-07-08 02:59:52, Info                  CSI    00001810 [SR] Cannot repair member file [l:16]'certpdef.dll.mui' of Microsoft-Windows-CertificateServices-CA-Certpdef.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99806: 2023-07-08 02:59:52, Info                  CSI    00001817 [SR] Cannot repair member file [l:6]'bi.dll' of Microsoft-Windows-BrokerInfrastructureClient, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99872: 2023-07-08 02:59:54, Info                  CSI    00001857 [SR] Cannot repair member file [l:10]'blbres.dll' of Microsoft-Windows-BLB-Engine-Proxy-Main, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99883: 2023-07-08 02:59:54, Info                  CSI    00001862 [SR] Cannot repair member file [l:15]'certxds.dll.mui' of Microsoft-Windows-CertificateServices-CA-certxds.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99903: 2023-07-08 03:00:01, Info                  CSI    00001876 [SR] Cannot repair member file [l:14]'certca.dll.mui' of Microsoft-Windows-CertificateServices-certca-dll.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99904: 2023-07-08 03:00:04, Info                  CSI    00001877 [SR] Cannot repair member file [l:12]'registry.sys' of Microsoft-Windows-Containers-RegistryVirtualization, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99905: 2023-07-08 03:00:05, Info                  CSI    00001878 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-48_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99906: 2023-07-08 03:00:05, Info                  CSI    00001879 [SR] Cannot repair member file [l:25]'Splashscreen.scale-80.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99907: 2023-07-08 03:00:05, Info                  CSI    0000187a [SR] Cannot repair member file [l:13]'StoreLogo.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99908: 2023-07-08 03:00:05, Info                  CSI    0000187b [SR] Cannot repair member file [l:37]'NarrowSplashScreen.contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99909: 2023-07-08 03:00:05, Info                  CSI    0000187c [SR] Cannot repair member file [l:12]'reminder.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99910: 2023-07-08 03:00:05, Info                  CSI    0000187d [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-150.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99911: 2023-07-08 03:00:05, Info                  CSI    0000187e [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-125.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99912: 2023-07-08 03:00:05, Info                  CSI    0000187f [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99913: 2023-07-08 03:00:05, Info                  CSI    00001880 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99914: 2023-07-08 03:00:05, Info                  CSI    00001881 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-400.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99915: 2023-07-08 03:00:05, Info                  CSI    00001882 [SR] Cannot repair member file [l:16]'SplashScreen.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99916: 2023-07-08 03:00:05, Info                  CSI    00001883 [SR] Cannot repair member file [l:10]'speech.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99917: 2023-07-08 03:00:05, Info                  CSI    00001884 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-32_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99918: 2023-07-08 03:00:05, Info                  CSI    00001885 [SR] Cannot repair member file [l:15]'store.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99919: 2023-07-08 03:00:05, Info                  CSI    00001886 [SR] Cannot repair member file [l:31]'SplashScreen.contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99920: 2023-07-08 03:00:05, Info                  CSI    00001887 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-16_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99921: 2023-07-08 03:00:05, Info                  CSI    00001888 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-32_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99922: 2023-07-08 03:00:05, Info                  CSI    00001889 [SR] Cannot repair member file [l:49]'xdevice.forward.targetsize-256_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99923: 2023-07-08 03:00:05, Info                  CSI    0000188a [SR] Cannot repair member file [l:10]'others.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99924: 2023-07-08 03:00:05, Info                  CSI    0000188b [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-48_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99925: 2023-07-08 03:00:05, Info                  CSI    0000188c [SR] Cannot repair member file [l:66]'xdevice.forward.targetsize-256_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99926: 2023-07-08 03:00:05, Info                  CSI    0000188d [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-32_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99927: 2023-07-08 03:00:05, Info                  CSI    0000188e [SR] Cannot repair member file [l:11]'package.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99928: 2023-07-08 03:00:05, Info                  CSI    0000188f [SR] Cannot repair member file [l:13]'SmallLogo.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99929: 2023-07-08 03:00:05, Info                  CSI    00001890 [SR] Cannot repair member file [l:66]'xdevice.forward.targetsize-256_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99930: 2023-07-08 03:00:05, Info                  CSI    00001891 [SR] Cannot repair member file [l:29]'xdevice.forward.scale-125.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99931: 2023-07-08 03:00:05, Info                  CSI    00001892 [SR] Cannot repair member file [l:19]'Glyph32x32-grey.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99932: 2023-07-08 03:00:05, Info                  CSI    00001893 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-24_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99933: 2023-07-08 03:00:05, Info                  CSI    00001894 [SR] Cannot repair member file [l:24]'voice_training_intro.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99934: 2023-07-08 03:00:05, Info                  CSI    00001895 [SR] Cannot repair member file [l:14]'send.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99935: 2023-07-08 03:00:05, Info                  CSI    00001896 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-48_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99936: 2023-07-08 03:00:05, Info                  CSI    00001897 [SR] Cannot repair member file [l:16]'snooze.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99937: 2023-07-08 03:00:05, Info                  CSI    00001898 [SR] Cannot repair member file [l:29]'xdevice.forward.scale-400.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99938: 2023-07-08 03:00:05, Info                  CSI    00001899 [SR] Cannot repair member file [l:29]'xdevice.forward.scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99939: 2023-07-08 03:00:05, Info                  CSI    0000189a [SR] Cannot repair member file [l:29]'xdevice.forward.scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99940: 2023-07-08 03:00:05, Info                  CSI    0000189b [SR] Cannot repair member file [l:29]'xdevice.forward.scale-150.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99941: 2023-07-08 03:00:05, Info                  CSI    0000189c [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-32_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99942: 2023-07-08 03:00:05, Info                  CSI    0000189d [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-150.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99943: 2023-07-08 03:00:05, Info                  CSI    0000189e [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-125.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99944: 2023-07-08 03:00:05, Info                  CSI    0000189f [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99945: 2023-07-08 03:00:05, Info                  CSI    000018a0 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99946: 2023-07-08 03:00:05, Info                  CSI    000018a1 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-16_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99947: 2023-07-08 03:00:05, Info                  CSI    000018a2 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-400.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99948: 2023-07-08 03:00:05, Info                  CSI    000018a3 [SR] Cannot repair member file [l:14]'call.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99949: 2023-07-08 03:00:05, Info                  CSI    000018a4 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-black_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99950: 2023-07-08 03:00:05, Info                  CSI    000018a5 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-black_scale-140.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99951: 2023-07-08 03:00:05, Info                  CSI    000018a6 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-black_scale-180.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99952: 2023-07-08 03:00:05, Info                  CSI    000018a7 [SR] Cannot repair member file [l:10]'search.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99953: 2023-07-08 03:00:05, Info                  CSI    000018a8 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-16_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99954: 2023-07-08 03:00:05, Info                  CSI    000018a9 [SR] Cannot repair member file [l:24]'MusicRecoPlaceholder.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99955: 2023-07-08 03:00:05, Info                  CSI    000018aa [SR] Cannot repair member file [l:15]'hey_cortana.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99956: 2023-07-08 03:00:05, Info                  CSI    000018ab [SR] Cannot repair member file [l:35]'RemindersSplashScreen.scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99957: 2023-07-08 03:00:05, Info                  CSI    000018ac [SR] Cannot repair member file [l:43]'HCWhite_Cortana_TraySearchBox_Glyph_100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99958: 2023-07-08 03:00:05, Info                  CSI    000018ad [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-24_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99959: 2023-07-08 03:00:05, Info                  CSI    000018ae [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-24_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99960: 2023-07-08 03:00:05, Info                  CSI    000018af [SR] Cannot repair member file [l:9]'badge.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99961: 2023-07-08 03:00:05, Info                  CSI    000018b0 [SR] Cannot repair member file [l:18]'complete.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99962: 2023-07-08 03:00:05, Info                  CSI    000018b1 [SR] Cannot repair member file [l:51]'xdevice.forward.targetsize-256_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99963: 2023-07-08 03:00:05, Info                  CSI    000018b2 [SR] Cannot repair member file [l:21]'SplashScreen_Xbox.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99964: 2023-07-08 03:00:05, Info                  CSI    000018b3 [SR] Cannot repair member file [l:50]'RemindersSplashScreen.contrast-white_scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99965: 2023-07-08 03:00:05, Info                  CSI    000018b4 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-16_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99966: 2023-07-08 03:00:05, Info                  CSI    000018b5 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-32_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99967: 2023-07-08 03:00:05, Info                  CSI    000018b6 [SR] Cannot repair member file [l:31]'SplashScreen.contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99968: 2023-07-08 03:00:05, Info                  CSI    000018b7 [SR] Cannot repair member file [l:37]'NarrowSplashScreen.contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99969: 2023-07-08 03:00:05, Info                  CSI    000018b8 [SR] Cannot repair member file [l:15]'bcsContent.json' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99970: 2023-07-08 03:00:05, Info                  CSI    000018b9 [SR] Cannot repair member file [l:20]'Glyph32x32-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99971: 2023-07-08 03:00:05, Info                  CSI    000018ba [SR] Cannot repair member file [l:27]'SmallIcon.targetsize-16.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99972: 2023-07-08 03:00:05, Info                  CSI    000018bb [SR] Cannot repair member file [l:27]'SmallIcon.targetsize-32.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99973: 2023-07-08 03:00:05, Info                  CSI    000018bc [SR] Cannot repair member file [l:17]'dismiss.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99974: 2023-07-08 03:00:05, Info                  CSI    000018bd [SR] Cannot repair member file [l:19]'xdevice.forward.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99975: 2023-07-08 03:00:05, Info                  CSI    000018be [SR] Cannot repair member file [l:18]'openlink.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99976: 2023-07-08 03:00:05, Info                  CSI    000018bf [SR] Cannot repair member file [l:43]'HCBlack_Cortana_TraySearchBox_Glyph_100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99977: 2023-07-08 03:00:05, Info                  CSI    000018c0 [SR] Cannot repair member file [l:26]'SplashScreen.scale-180.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99978: 2023-07-08 03:00:05, Info                  CSI    000018c1 [SR] Cannot repair member file [l:34]'xdevice.forward.targetsize-256.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99979: 2023-07-08 03:00:05, Info                  CSI    000018c2 [SR] Cannot repair member file [l:40]'RemindersSplashScreen.contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99980: 2023-07-08 03:00:05, Info                  CSI    000018c3 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-16_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99981: 2023-07-08 03:00:05, Info                  CSI    000018c4 [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-48.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99982: 2023-07-08 03:00:05, Info                  CSI    000018c5 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-24_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99983: 2023-07-08 03:00:05, Info                  CSI    000018c6 [SR] Cannot repair member file [l:26]'SplashScreen.scale-140.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99984: 2023-07-08 03:00:05, Info                  CSI    000018c7 [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-16.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99985: 2023-07-08 03:00:05, Info                  CSI    000018c8 [SR] Cannot repair member file [l:49]'xdevice.forward.targetsize-256_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99986: 2023-07-08 03:00:05, Info                  CSI    000018c9 [SR] Cannot repair member file [l:40]'Splashscreen.contrast-white_scale-80.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99987: 2023-07-08 03:00:05, Info                  CSI    000018ca [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-24.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99988: 2023-07-08 03:00:05, Info                  CSI    000018cb [SR] Cannot repair member file [l:26]'SplashScreen.scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99989: 2023-07-08 03:00:05, Info                  CSI    000018cc [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-32.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99990: 2023-07-08 03:00:05, Info                  CSI    000018cd [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-48_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99991: 2023-07-08 03:00:05, Info                  CSI    000018ce [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-24_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99992: 2023-07-08 03:00:05, Info                  CSI    000018cf [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-48_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99993: 2023-07-08 03:00:05, Info                  CSI    000018d0 [SR] Cannot repair member file [l:40]'Splashscreen.contrast-black_scale-80.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99994: 2023-07-08 03:00:05, Info                  CSI    000018d1 [SR] Cannot repair member file [l:25]'RemindersSplashScreen.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99995: 2023-07-08 03:00:05, Info                  CSI    000018d2 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-white_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99996: 2023-07-08 03:00:05, Info                  CSI    000018d3 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-white_scale-140.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99997: 2023-07-08 03:00:05, Info                  CSI    000018d4 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-white_scale-180.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99998: 2023-07-08 03:00:05, Info                  CSI    000018d5 [SR] Cannot repair member file [l:22]'NarrowSplashScreen.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line  99999: 2023-07-08 03:00:06, Info                  CSI    000018d6 [SR] Cannot repair member file [l:29]'Windows.Cortana.ProxyStub.dll' of Microsoft-Windows-Cortana-BrokeredApi-ProxyStub, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100000: 2023-07-08 03:00:07, Info                  CSI    000018d7 [SR] Cannot repair member file [l:13]'netprovfw.dll' of Microsoft-Windows-CoreSystem-NetProvision-Framework, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100001: 2023-07-08 03:00:21, Info                  CSI    000018d8 [SR] Cannot repair member file [l:20]'msdtcVSp1res.dll.mui' of Microsoft-Windows-COM-ComPlus-DTC-VistaSp1.Res.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100002: 2023-07-08 03:00:21, Info                  CSI    000018d9 [SR] Cannot repair member file [l:10]'mintdh.dll' of Microsoft-Windows-CoreSystem-TraceDataHelper, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100003: 2023-07-08 03:00:23, Info                  CSI    000018da [SR] Cannot repair member file [l:12]'joinutil.dll' of Microsoft-Windows-CoreSystem-NetProvision-JoinUtil, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100004: 2023-07-08 03:00:23, Info                  CSI    000018db [SR] Cannot repair member file [l:16]'msdtcVSp1res.dll' of Microsoft-Windows-COM-ComPlus-DTC-VistaSp1.Res, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100006: 2023-07-08 03:00:33, Info                  CSI    000018dd [SR] Cannot repair member file [l:16]'msdtcVSp1res.dll' of Microsoft-Windows-COM-ComPlus-DTC-VistaSp1.Res, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100026: 2023-07-08 03:00:34, Info                  CSI    000018f1 [SR] Cannot repair member file [l:14]'certca.dll.mui' of Microsoft-Windows-CertificateServices-certca-dll.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100033: 2023-07-08 03:00:35, Info                  CSI    000018f8 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-48_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100034: 2023-07-08 03:00:35, Info                  CSI    000018f9 [SR] Cannot repair member file [l:25]'Splashscreen.scale-80.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100035: 2023-07-08 03:00:35, Info                  CSI    000018fa [SR] Cannot repair member file [l:13]'StoreLogo.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100036: 2023-07-08 03:00:35, Info                  CSI    000018fb [SR] Cannot repair member file [l:37]'NarrowSplashScreen.contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100037: 2023-07-08 03:00:35, Info                  CSI    000018fc [SR] Cannot repair member file [l:12]'reminder.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100038: 2023-07-08 03:00:35, Info                  CSI    000018fd [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-150.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100039: 2023-07-08 03:00:35, Info                  CSI    000018fe [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-125.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100040: 2023-07-08 03:00:35, Info                  CSI    000018ff [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100041: 2023-07-08 03:00:35, Info                  CSI    00001900 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100042: 2023-07-08 03:00:35, Info                  CSI    00001901 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-black_scale-400.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100043: 2023-07-08 03:00:35, Info                  CSI    00001902 [SR] Cannot repair member file [l:16]'SplashScreen.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100044: 2023-07-08 03:00:35, Info                  CSI    00001903 [SR] Cannot repair member file [l:10]'speech.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100045: 2023-07-08 03:00:35, Info                  CSI    00001904 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-32_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100046: 2023-07-08 03:00:35, Info                  CSI    00001905 [SR] Cannot repair member file [l:15]'store.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100047: 2023-07-08 03:00:35, Info                  CSI    00001906 [SR] Cannot repair member file [l:31]'SplashScreen.contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100048: 2023-07-08 03:00:35, Info                  CSI    00001907 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-16_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100049: 2023-07-08 03:00:35, Info                  CSI    00001908 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-32_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100050: 2023-07-08 03:00:35, Info                  CSI    00001909 [SR] Cannot repair member file [l:49]'xdevice.forward.targetsize-256_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100051: 2023-07-08 03:00:35, Info                  CSI    0000190a [SR] Cannot repair member file [l:10]'others.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100052: 2023-07-08 03:00:35, Info                  CSI    0000190b [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-48_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100053: 2023-07-08 03:00:35, Info                  CSI    0000190c [SR] Cannot repair member file [l:66]'xdevice.forward.targetsize-256_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100054: 2023-07-08 03:00:35, Info                  CSI    0000190d [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-32_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100055: 2023-07-08 03:00:35, Info                  CSI    0000190e [SR] Cannot repair member file [l:11]'package.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100056: 2023-07-08 03:00:35, Info                  CSI    0000190f [SR] Cannot repair member file [l:13]'SmallLogo.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100057: 2023-07-08 03:00:35, Info                  CSI    00001910 [SR] Cannot repair member file [l:66]'xdevice.forward.targetsize-256_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100058: 2023-07-08 03:00:35, Info                  CSI    00001911 [SR] Cannot repair member file [l:29]'xdevice.forward.scale-125.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100059: 2023-07-08 03:00:35, Info                  CSI    00001912 [SR] Cannot repair member file [l:19]'Glyph32x32-grey.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100060: 2023-07-08 03:00:35, Info                  CSI    00001913 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-24_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100061: 2023-07-08 03:00:35, Info                  CSI    00001914 [SR] Cannot repair member file [l:24]'voice_training_intro.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100062: 2023-07-08 03:00:35, Info                  CSI    00001915 [SR] Cannot repair member file [l:14]'send.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100063: 2023-07-08 03:00:35, Info                  CSI    00001916 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-48_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100064: 2023-07-08 03:00:35, Info                  CSI    00001917 [SR] Cannot repair member file [l:16]'snooze.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100065: 2023-07-08 03:00:35, Info                  CSI    00001918 [SR] Cannot repair member file [l:29]'xdevice.forward.scale-400.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100066: 2023-07-08 03:00:35, Info                  CSI    00001919 [SR] Cannot repair member file [l:29]'xdevice.forward.scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100067: 2023-07-08 03:00:35, Info                  CSI    0000191a [SR] Cannot repair member file [l:29]'xdevice.forward.scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100068: 2023-07-08 03:00:35, Info                  CSI    0000191b [SR] Cannot repair member file [l:29]'xdevice.forward.scale-150.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100069: 2023-07-08 03:00:35, Info                  CSI    0000191c [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-32_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100070: 2023-07-08 03:00:35, Info                  CSI    0000191d [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-150.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100071: 2023-07-08 03:00:35, Info                  CSI    0000191e [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-125.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100072: 2023-07-08 03:00:35, Info                  CSI    0000191f [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100073: 2023-07-08 03:00:35, Info                  CSI    00001920 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100074: 2023-07-08 03:00:35, Info                  CSI    00001921 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-16_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100075: 2023-07-08 03:00:35, Info                  CSI    00001922 [SR] Cannot repair member file [l:44]'xdevice.forward.contrast-white_scale-400.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100076: 2023-07-08 03:00:35, Info                  CSI    00001923 [SR] Cannot repair member file [l:14]'call.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100077: 2023-07-08 03:00:35, Info                  CSI    00001924 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-black_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100078: 2023-07-08 03:00:35, Info                  CSI    00001925 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-black_scale-140.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100079: 2023-07-08 03:00:35, Info                  CSI    00001926 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-black_scale-180.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100080: 2023-07-08 03:00:35, Info                  CSI    00001927 [SR] Cannot repair member file [l:10]'search.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100081: 2023-07-08 03:00:35, Info                  CSI    00001928 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-16_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100082: 2023-07-08 03:00:35, Info                  CSI    00001929 [SR] Cannot repair member file [l:24]'MusicRecoPlaceholder.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100083: 2023-07-08 03:00:35, Info                  CSI    0000192a [SR] Cannot repair member file [l:15]'hey_cortana.gif' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100084: 2023-07-08 03:00:35, Info                  CSI    0000192b [SR] Cannot repair member file [l:35]'RemindersSplashScreen.scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100085: 2023-07-08 03:00:35, Info                  CSI    0000192c [SR] Cannot repair member file [l:43]'HCWhite_Cortana_TraySearchBox_Glyph_100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100086: 2023-07-08 03:00:35, Info                  CSI    0000192d [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-24_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100087: 2023-07-08 03:00:35, Info                  CSI    0000192e [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-24_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100088: 2023-07-08 03:00:35, Info                  CSI    0000192f [SR] Cannot repair member file [l:9]'badge.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100089: 2023-07-08 03:00:35, Info                  CSI    00001930 [SR] Cannot repair member file [l:18]'complete.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100090: 2023-07-08 03:00:35, Info                  CSI    00001931 [SR] Cannot repair member file [l:51]'xdevice.forward.targetsize-256_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100091: 2023-07-08 03:00:35, Info                  CSI    00001932 [SR] Cannot repair member file [l:21]'SplashScreen_Xbox.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100092: 2023-07-08 03:00:35, Info                  CSI    00001933 [SR] Cannot repair member file [l:50]'RemindersSplashScreen.contrast-white_scale-200.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100093: 2023-07-08 03:00:35, Info                  CSI    00001934 [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-16_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100094: 2023-07-08 03:00:35, Info                  CSI    00001935 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-32_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100095: 2023-07-08 03:00:35, Info                  CSI    00001936 [SR] Cannot repair member file [l:31]'SplashScreen.contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100096: 2023-07-08 03:00:35, Info                  CSI    00001937 [SR] Cannot repair member file [l:37]'NarrowSplashScreen.contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100097: 2023-07-08 03:00:35, Info                  CSI    00001938 [SR] Cannot repair member file [l:15]'bcsContent.json' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100098: 2023-07-08 03:00:35, Info                  CSI    00001939 [SR] Cannot repair member file [l:20]'Glyph32x32-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100099: 2023-07-08 03:00:35, Info                  CSI    0000193a [SR] Cannot repair member file [l:27]'SmallIcon.targetsize-16.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100100: 2023-07-08 03:00:35, Info                  CSI    0000193b [SR] Cannot repair member file [l:27]'SmallIcon.targetsize-32.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100101: 2023-07-08 03:00:35, Info                  CSI    0000193c [SR] Cannot repair member file [l:17]'dismiss.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100102: 2023-07-08 03:00:35, Info                  CSI    0000193d [SR] Cannot repair member file [l:19]'xdevice.forward.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100103: 2023-07-08 03:00:35, Info                  CSI    0000193e [SR] Cannot repair member file [l:18]'openlink.white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100104: 2023-07-08 03:00:35, Info                  CSI    0000193f [SR] Cannot repair member file [l:43]'HCBlack_Cortana_TraySearchBox_Glyph_100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100105: 2023-07-08 03:00:35, Info                  CSI    00001940 [SR] Cannot repair member file [l:26]'SplashScreen.scale-180.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100106: 2023-07-08 03:00:35, Info                  CSI    00001941 [SR] Cannot repair member file [l:34]'xdevice.forward.targetsize-256.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100107: 2023-07-08 03:00:35, Info                  CSI    00001942 [SR] Cannot repair member file [l:40]'RemindersSplashScreen.contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100108: 2023-07-08 03:00:35, Info                  CSI    00001943 [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-16_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100109: 2023-07-08 03:00:35, Info                  CSI    00001944 [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-48.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100110: 2023-07-08 03:00:35, Info                  CSI    00001945 [SR] Cannot repair member file [l:50]'xdevice.forward.targetsize-24_altform-unplated.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100111: 2023-07-08 03:00:35, Info                  CSI    00001946 [SR] Cannot repair member file [l:26]'SplashScreen.scale-140.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100112: 2023-07-08 03:00:35, Info                  CSI    00001947 [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-16.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100113: 2023-07-08 03:00:35, Info                  CSI    00001948 [SR] Cannot repair member file [l:49]'xdevice.forward.targetsize-256_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100114: 2023-07-08 03:00:35, Info                  CSI    00001949 [SR] Cannot repair member file [l:40]'Splashscreen.contrast-white_scale-80.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100115: 2023-07-08 03:00:35, Info                  CSI    0000194a [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-24.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100116: 2023-07-08 03:00:35, Info                  CSI    0000194b [SR] Cannot repair member file [l:26]'SplashScreen.scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100117: 2023-07-08 03:00:35, Info                  CSI    0000194c [SR] Cannot repair member file [l:33]'xdevice.forward.targetsize-32.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100118: 2023-07-08 03:00:35, Info                  CSI    0000194d [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-48_altform-unplated_contrast-white.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100119: 2023-07-08 03:00:35, Info                  CSI    0000194e [SR] Cannot repair member file [l:65]'xdevice.forward.targetsize-24_altform-unplated_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100120: 2023-07-08 03:00:35, Info                  CSI    0000194f [SR] Cannot repair member file [l:48]'xdevice.forward.targetsize-48_contrast-black.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100121: 2023-07-08 03:00:35, Info                  CSI    00001950 [SR] Cannot repair member file [l:40]'Splashscreen.contrast-black_scale-80.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100122: 2023-07-08 03:00:35, Info                  CSI    00001951 [SR] Cannot repair member file [l:25]'RemindersSplashScreen.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100123: 2023-07-08 03:00:35, Info                  CSI    00001952 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-white_scale-100.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100124: 2023-07-08 03:00:35, Info                  CSI    00001953 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-white_scale-140.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100125: 2023-07-08 03:00:35, Info                  CSI    00001954 [SR] Cannot repair member file [l:41]'SplashScreen.contrast-white_scale-180.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100126: 2023-07-08 03:00:35, Info                  CSI    00001955 [SR] Cannot repair member file [l:22]'NarrowSplashScreen.png' of Microsoft-Windows-Cortana.Desktop.AppxMain.Assets.Cortana, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100132: 2023-07-08 03:00:35, Info                  CSI    0000195b [SR] Cannot repair member file [l:13]'netprovfw.dll' of Microsoft-Windows-CoreSystem-NetProvision-Framework, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100135: 2023-07-08 03:00:35, Info                  CSI    0000195e [SR] Cannot repair member file [l:20]'msdtcVSp1res.dll.mui' of Microsoft-Windows-COM-ComPlus-DTC-VistaSp1.Res.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100140: 2023-07-08 03:00:35, Info                  CSI    00001963 [SR] Cannot repair member file [l:29]'Windows.Cortana.ProxyStub.dll' of Microsoft-Windows-Cortana-BrokeredApi-ProxyStub, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100195: 2023-07-08 03:00:39, Info                  CSI    00001998 [SR] Cannot repair member file [l:12]'registry.sys' of Microsoft-Windows-Containers-RegistryVirtualization, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100213: 2023-07-08 03:00:41, Info                  CSI    000019aa [SR] Cannot repair member file [l:12]'joinutil.dll' of Microsoft-Windows-CoreSystem-NetProvision-JoinUtil, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100221: 2023-07-08 03:00:42, Info                  CSI    000019b2 [SR] Cannot repair member file [l:10]'mintdh.dll' of Microsoft-Windows-CoreSystem-TraceDataHelper, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100240: 2023-07-08 03:00:48, Info                  CSI    000019c5 [SR] Cannot repair member file [l:10]'drvcfg.exe' of Microsoft-Windows-CoreSystemMinPnp, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100241: 2023-07-08 03:00:58, Info                  CSI    000019c6 [SR] Cannot repair member file [l:15]'wdsddps.dll.mui' of Microsoft-Windows-Deployment-Services-Dynamic-Driver-Provisioning-Provider.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100242: 2023-07-08 03:00:58, Info                  CSI    000019c7 [SR] Cannot repair member file [l:9]'wdsmc.dll' of Microsoft-Windows-Deployment-Services-Multicast, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100243: 2023-07-08 03:00:58, Info                  CSI    000019c8 [SR] Cannot repair member file [l:10]'wdsmcctr.h' of Microsoft-Windows-Deployment-Services-Multicast, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100244: 2023-07-08 03:00:58, Info                  CSI    000019c9 [SR] Cannot repair member file [l:12]'wdsmcctr.ini' of Microsoft-Windows-Deployment-Services-Multicast, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100245: 2023-07-08 03:01:00, Info                  CSI    000019ca [SR] Cannot repair member file [l:16]'WdsDcPxe.dll.mui' of Microsoft-Windows-Deployment-Services-WDSDCPXE.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100246: 2023-07-08 03:01:02, Info                  CSI    000019cb [SR] Cannot repair member file [l:29]'DeviceSetupManagerApi.dll.mui' of Microsoft-Windows-DeviceSetupManagerApi.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100260: 2023-07-08 03:01:03, Info                  CSI    000019d9 [SR] Cannot repair member file [l:29]'DeviceSetupManagerApi.dll.mui' of Microsoft-Windows-DeviceSetupManagerApi.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100306: 2023-07-08 03:01:05, Info                  CSI    00001a03 [SR] Cannot repair member file [l:10]'drvcfg.exe' of Microsoft-Windows-CoreSystemMinPnp, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100309: 2023-07-08 03:01:05, Info                  CSI    00001a06 [SR] Cannot repair member file [l:16]'WdsDcPxe.dll.mui' of Microsoft-Windows-Deployment-Services-WDSDCPXE.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100319: 2023-07-08 03:01:05, Info                  CSI    00001a10 [SR] Cannot repair member file [l:9]'wdsmc.dll' of Microsoft-Windows-Deployment-Services-Multicast, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100320: 2023-07-08 03:01:05, Info                  CSI    00001a11 [SR] Cannot repair member file [l:10]'wdsmcctr.h' of Microsoft-Windows-Deployment-Services-Multicast, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100321: 2023-07-08 03:01:05, Info                  CSI    00001a12 [SR] Cannot repair member file [l:12]'wdsmcctr.ini' of Microsoft-Windows-Deployment-Services-Multicast, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100350: 2023-07-08 03:01:08, Info                  CSI    00001a2d [SR] Cannot repair member file [l:15]'wdsddps.dll.mui' of Microsoft-Windows-Deployment-Services-Dynamic-Driver-Provisioning-Provider.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100397: 2023-07-08 03:01:14, Info                  CSI    00001a59 [SR] Cannot repair member file [l:15]'DismApi.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-API.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100398: 2023-07-08 03:01:15, Info                  CSI    00001a5a [SR] Cannot repair member file [l:8]'boot.sdi' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100399: 2023-07-08 03:01:15, Info                  CSI    00001a5b [SR] Cannot repair member file [l:13]'wdsprfctr.ini' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100400: 2023-07-08 03:01:15, Info                  CSI    00001a5c [SR] Cannot repair member file [l:11]'wdsprfctr.h' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100401: 2023-07-08 03:01:15, Info                  CSI    00001a5d [SR] Cannot repair member file [l:10]'wdssrv.dll' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100402: 2023-07-08 03:01:15, Info                  CSI    00001a5e [SR] Cannot repair member file [l:11]'reminst.inf' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100403: 2023-07-08 03:01:17, Info                  CSI    00001a5f [SR] Cannot repair member file [l:17]'dfsrwmiv2.dll.mui' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100404: 2023-07-08 03:01:17, Info                  CSI    00001a60 [SR] Cannot repair member file [l:13]'dfsrs.exe.mui' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100405: 2023-07-08 03:01:17, Info                  CSI    00001a61 [SR] Cannot repair member file [l:13]'dfsrwmiv2.mfl' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100406: 2023-07-08 03:01:17, Info                  CSI    00001a62 [SR] Cannot repair member file [l:16]'dfsrress.dll.mui' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100407: 2023-07-08 03:01:17, Info                  CSI    00001a63 [SR] Cannot repair member file [l:13]'dfsrprovs.mfl' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100408: 2023-07-08 03:01:17, Info                  CSI    00001a64 [SR] Cannot repair member file [l:23]'dfsrwmiv2_uninstall.mfl' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100409: 2023-07-08 03:01:17, Info                  CSI    00001a65 [SR] Cannot repair member file [l:11]'WdsDiag.dll' of Microsoft-Windows-Deployment-Services-Diagnostics, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100410: 2023-07-08 03:01:17, Info                  CSI    00001a66 [SR] Cannot repair member file [l:9]'wdsbp.dll' of Microsoft-Windows-Deployment-Services-Boot-Program-API, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100411: 2023-07-08 03:01:18, Info                  CSI    00001a67 [SR] Cannot repair member file [l:10]'WUDFRd.sys' of Microsoft-Windows-DriverFrameworks-UserMode, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100412: 2023-07-08 03:01:18, Info                  CSI    00001a68 [SR] Cannot repair member file [l:40]'MsftWdf_User_01_11_00_Inbox_Critical.Wdf' of Microsoft-Windows-DriverFrameworks-UserMode, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100413: 2023-07-08 03:01:18, Info                  CSI    00001a69 [SR] Cannot repair member file [l:12]'WUDFHost.exe' of Microsoft-Windows-DriverFrameworks-UserMode, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100414: 2023-07-08 03:01:18, Info                  CSI    00001a6a [SR] Cannot repair member file [l:7]'wdi.dll' of Microsoft-Windows-DiagnosticInfrastructure-Client, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100415: 2023-07-08 03:01:18, Info                  CSI    00001a6b [SR] Cannot repair member file [l:7]'dps.dll' of Microsoft-Windows-DiagnosticInfrastructure-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100416: 2023-07-08 03:01:18, Info                  CSI    00001a6c [SR] Cannot repair member file [l:17]'WdsImgSrv.dll.mui' of Microsoft-Windows-Deployment-Services-Image-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100417: 2023-07-08 03:01:20, Info                  CSI    00001a6d [SR] Cannot repair member file [l:10]'wdscsl.dll' of Microsoft-Windows-Deployment-Services-Client-Server-Library, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100418: 2023-07-08 03:01:28, Info                  CSI    00001a6e [SR] Cannot repair member file [l:19]'LogProvider.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100419: 2023-07-08 03:01:28, Info                  CSI    00001a6f [SR] Cannot repair member file [l:16]'DismCore.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100420: 2023-07-08 03:01:28, Info                  CSI    00001a70 [SR] Cannot repair member file [l:22]'FolderProvider.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100421: 2023-07-08 03:01:28, Info                  CSI    00001a71 [SR] Cannot repair member file [l:16]'DismProv.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100422: 2023-07-08 03:01:29, Info                  CSI    00001a72 [SR] Cannot repair member file [l:18]'dmiso8601utils.dll' of Microsoft-Windows-DeviceManagement-DmIso8601Utils, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100423: 2023-07-08 03:01:30, Info                  CSI    00001a73 [SR] Cannot repair member file [l:13]'wdsmc.dll.mui' of Microsoft-Windows-Deployment-Services-Multicast.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100424: 2023-07-08 03:01:30, Info                  CSI    00001a74 [SR] Cannot repair member file [l:12]'wdsmcctr.ini' of Microsoft-Windows-Deployment-Services-Multicast.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100425: 2023-07-08 03:01:31, Info                  CSI    00001a75 [SR] Cannot repair member file [l:7]'dwm.exe' of Microsoft-Windows-DesktopWindowManager-Process, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100436: 2023-07-08 03:01:33, Info                  CSI    00001a7f [SR] Cannot repair member file [l:11]'WdsDiag.dll' of Microsoft-Windows-Deployment-Services-Diagnostics, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100448: 2023-07-08 03:01:33, Info                  CSI    00001a88 [SR] Cannot repair member file [l:17]'dfsrwmiv2.dll.mui' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100449: 2023-07-08 03:01:33, Info                  CSI    00001a89 [SR] Cannot repair member file [l:13]'dfsrs.exe.mui' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100450: 2023-07-08 03:01:33, Info                  CSI    00001a8a [SR] Cannot repair member file [l:13]'dfsrwmiv2.mfl' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100451: 2023-07-08 03:01:33, Info                  CSI    00001a8b [SR] Cannot repair member file [l:16]'dfsrress.dll.mui' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100452: 2023-07-08 03:01:33, Info                  CSI    00001a8c [SR] Cannot repair member file [l:13]'dfsrprovs.mfl' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100453: 2023-07-08 03:01:33, Info                  CSI    00001a8d [SR] Cannot repair member file [l:23]'dfsrwmiv2_uninstall.mfl' of Microsoft-Windows-DFSR-Core-ServerOnly.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100461: 2023-07-08 03:01:33, Info                  CSI    00001a95 [SR] Cannot repair member file [l:9]'wdsbp.dll' of Microsoft-Windows-Deployment-Services-Boot-Program-API, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100470: 2023-07-08 03:01:34, Info                  CSI    00001a9e [SR] Cannot repair member file [l:7]'dwm.exe' of Microsoft-Windows-DesktopWindowManager-Process, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100473: 2023-07-08 03:01:34, Info                  CSI    00001aa1 [SR] Cannot repair member file [l:10]'WUDFRd.sys' of Microsoft-Windows-DriverFrameworks-UserMode, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100474: 2023-07-08 03:01:34, Info                  CSI    00001aa2 [SR] Cannot repair member file [l:40]'MsftWdf_User_01_11_00_Inbox_Critical.Wdf' of Microsoft-Windows-DriverFrameworks-UserMode, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100475: 2023-07-08 03:01:34, Info                  CSI    00001aa3 [SR] Cannot repair member file [l:12]'WUDFHost.exe' of Microsoft-Windows-DriverFrameworks-UserMode, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100488: 2023-07-08 03:01:35, Info                  CSI    00001ab0 [SR] Cannot repair member file [l:15]'DismApi.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-API.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100492: 2023-07-08 03:01:35, Info                  CSI    00001ab4 [SR] Cannot repair member file [l:7]'dps.dll' of Microsoft-Windows-DiagnosticInfrastructure-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100533: 2023-07-08 03:01:37, Info                  CSI    00001ada [SR] Cannot repair member file [l:19]'LogProvider.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100534: 2023-07-08 03:01:37, Info                  CSI    00001adb [SR] Cannot repair member file [l:16]'DismCore.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100535: 2023-07-08 03:01:37, Info                  CSI    00001adc [SR] Cannot repair member file [l:22]'FolderProvider.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100536: 2023-07-08 03:01:37, Info                  CSI    00001add [SR] Cannot repair member file [l:16]'DismProv.dll.mui' of Microsoft-Windows-Deployment-Image-Servicing-Management-Core.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100547: 2023-07-08 03:01:38, Info                  CSI    00001ae8 [SR] Cannot repair member file [l:13]'wdsmc.dll.mui' of Microsoft-Windows-Deployment-Services-Multicast.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100548: 2023-07-08 03:01:38, Info                  CSI    00001ae9 [SR] Cannot repair member file [l:12]'wdsmcctr.ini' of Microsoft-Windows-Deployment-Services-Multicast.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100556: 2023-07-08 03:01:38, Info                  CSI    00001af1 [SR] Cannot repair member file [l:18]'dmiso8601utils.dll' of Microsoft-Windows-DeviceManagement-DmIso8601Utils, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100570: 2023-07-08 03:01:39, Info                  CSI    00001aff [SR] Cannot repair member file [l:10]'wdscsl.dll' of Microsoft-Windows-Deployment-Services-Client-Server-Library, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100578: 2023-07-08 03:01:39, Info                  CSI    00001b07 [SR] Cannot repair member file [l:17]'WdsImgSrv.dll.mui' of Microsoft-Windows-Deployment-Services-Image-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100589: 2023-07-08 03:01:40, Info                  CSI    00001b12 [SR] Cannot repair member file [l:8]'boot.sdi' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100590: 2023-07-08 03:01:40, Info                  CSI    00001b13 [SR] Cannot repair member file [l:13]'wdsprfctr.ini' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100591: 2023-07-08 03:01:40, Info                  CSI    00001b14 [SR] Cannot repair member file [l:11]'wdsprfctr.h' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100592: 2023-07-08 03:01:40, Info                  CSI    00001b15 [SR] Cannot repair member file [l:10]'wdssrv.dll' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100593: 2023-07-08 03:01:40, Info                  CSI    00001b16 [SR] Cannot repair member file [l:11]'reminst.inf' of Microsoft-Windows-Deployment-Services-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100606: 2023-07-08 03:01:41, Info                  CSI    00001b23 [SR] Cannot repair member file [l:7]'wdi.dll' of Microsoft-Windows-DiagnosticInfrastructure-Client, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100613: 2023-07-08 03:01:42, Info                  CSI    00001b2a [SR] Cannot repair member file [l:11]'wdsddps.dll' of Microsoft-Windows-Deployment-Services-Dynamic-Driver-Provisioning-Provider, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100614: 2023-07-08 03:01:50, Info                  CSI    00001b2b [SR] Cannot repair member file [l:13]'WdsImgSrv.dll' of Microsoft-Windows-Deployment-Services-Image-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100615: 2023-07-08 03:01:53, Info                  CSI    00001b2c [SR] Cannot repair member file [l:10]'wdspxe.dll' of Microsoft-Windows-Deployment-Services-PXE-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100616: 2023-07-08 03:01:53, Info                  CSI    00001b2d [SR] Cannot repair member file [l:10]'samcli.dll' of Microsoft-Windows-Directory-Services-SAM-NetAPI, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100617: 2023-07-08 03:01:53, Info                  CSI    00001b2e [SR] Cannot repair member file [l:12]'wdsdcpxe.dll' of Microsoft-Windows-Deployment-Services-WDSDCPXE, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100618: 2023-07-08 03:01:53, Info                  CSI    00001b2f [SR] Cannot repair member file [l:12]'wdsmdmgr.dll' of Microsoft-Windows-Deployment-Services-WDSMDMGR, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100619: 2023-07-08 03:01:54, Info                  CSI    00001b30 [SR] Cannot repair member file [l:9]'ntdsa.mof' of Microsoft-Windows-DirectoryServices-NTDSAI, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100620: 2023-07-08 03:01:54, Info                  CSI    00001b31 [SR] Cannot repair member file [l:10]'ntdsai.dll' of Microsoft-Windows-DirectoryServices-NTDSAI, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100621: 2023-07-08 03:01:54, Info                  CSI    00001b32 [SR] Cannot repair member file [l:14]'wdstftpctr.ini' of Microsoft-Windows-Deployment-Services-TFTP-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100622: 2023-07-08 03:01:54, Info                  CSI    00001b33 [SR] Cannot repair member file [l:15]'wdstftp.dll.mui' of Microsoft-Windows-Deployment-Services-TFTP-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100623: 2023-07-08 03:01:56, Info                  CSI    00001b34 [SR] Cannot repair member file [l:10]'ksuser.dll' of Microsoft-Windows-DirectShow-KernelSupportUser, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100624: 2023-07-08 03:01:56, Info                  CSI    00001b35 [SR] Cannot repair member file [l:12]'dwmredir.dll' of Microsoft-Windows-DesktopWindowManager-Redir, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100625: 2023-07-08 03:01:56, Info                  CSI    00001b36 [SR] Cannot repair member file [l:14]'wdspxe.dll.mui' of Microsoft-Windows-Deployment-Services-PXE-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100626: 2023-07-08 03:01:58, Info                  CSI    00001b37 [SR] Cannot repair member file [l:10]'ddp_ps.dll' of Microsoft-Windows-Dedup-Common, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100627: 2023-07-08 03:01:58, Info                  CSI    00001b38 [SR] Cannot repair member file [l:12]'ddputils.dll' of Microsoft-Windows-Dedup-Common, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100628: 2023-07-08 03:01:58, Info                  CSI    00001b39 [SR] Cannot repair member file [l:7]'ddp.mof' of Microsoft-Windows-Dedup-Common, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100636: 2023-07-08 03:02:06, Info                  CSI    00001b41 [SR] Cannot repair member file [l:9]'ntdsa.mof' of Microsoft-Windows-DirectoryServices-NTDSAI, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100637: 2023-07-08 03:02:06, Info                  CSI    00001b42 [SR] Cannot repair member file [l:10]'ntdsai.dll' of Microsoft-Windows-DirectoryServices-NTDSAI, version 10.0.14393.4770, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100645: 2023-07-08 03:02:07, Info                  CSI    00001b4a [SR] Cannot repair member file [l:14]'wdstftpctr.ini' of Microsoft-Windows-Deployment-Services-TFTP-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100646: 2023-07-08 03:02:07, Info                  CSI    00001b4b [SR] Cannot repair member file [l:15]'wdstftp.dll.mui' of Microsoft-Windows-Deployment-Services-TFTP-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100669: 2023-07-08 03:02:08, Info                  CSI    00001b62 [SR] Cannot repair member file [l:12]'wdsdcpxe.dll' of Microsoft-Windows-Deployment-Services-WDSDCPXE, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100696: 2023-07-08 03:02:09, Info                  CSI    00001b7d [SR] Cannot repair member file [l:10]'ksuser.dll' of Microsoft-Windows-DirectShow-KernelSupportUser, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100701: 2023-07-08 03:02:09, Info                  CSI    00001b82 [SR] Cannot repair member file [l:10]'ddp_ps.dll' of Microsoft-Windows-Dedup-Common, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100702: 2023-07-08 03:02:09, Info                  CSI    00001b83 [SR] Cannot repair member file [l:12]'ddputils.dll' of Microsoft-Windows-Dedup-Common, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100703: 2023-07-08 03:02:09, Info                  CSI    00001b84 [SR] Cannot repair member file [l:7]'ddp.mof' of Microsoft-Windows-Dedup-Common, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100712: 2023-07-08 03:02:09, Info                  CSI    00001b8d [SR] Cannot repair member file [l:13]'WdsImgSrv.dll' of Microsoft-Windows-Deployment-Services-Image-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100715: 2023-07-08 03:02:09, Info                  CSI    00001b90 [SR] Cannot repair member file [l:12]'dwmredir.dll' of Microsoft-Windows-DesktopWindowManager-Redir, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100718: 2023-07-08 03:02:10, Info                  CSI    00001b93 [SR] Cannot repair member file [l:14]'wdspxe.dll.mui' of Microsoft-Windows-Deployment-Services-PXE-Server.Resources, version 10.0.14393.0, arch amd64, culture [l:5]'en-US', nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100726: 2023-07-08 03:02:10, Info                  CSI    00001b9b [SR] Cannot repair member file [l:10]'wdspxe.dll' of Microsoft-Windows-Deployment-Services-PXE-Server, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100730: 2023-07-08 03:02:10, Info                  CSI    00001b9f [SR] Cannot repair member file [l:11]'wdsddps.dll' of Microsoft-Windows-Deployment-Services-Dynamic-Driver-Provisioning-Provider, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100752: 2023-07-08 03:02:10, Info                  CSI    00001bb4 [SR] Cannot repair member file [l:10]'samcli.dll' of Microsoft-Windows-Directory-Services-SAM-NetAPI, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
    Line 100771: 2023-07-08 03:02:11, Info                  CSI    00001bc6 [SR] Cannot repair member file [l:12]'wdsmdmgr.dll' of Microsoft-Windows-Deployment-Services-WDSMDMGR, version 10.0.14393.0, arch amd64, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
 
I'm running SFC /ScanNow again to see if the installation of that older servicing stack KB has resulting in any improvement.
 
I didn't do a line by line comparison, but the results in CBS.log still has 358 hits when searching for 'cannot repair' for the current run of SFC. It stops at 41% which I believe is the same as before (since I didn't write down what it was at this morning and all all I remembered was that it was about 40% then).
 
I'm still worried about the 10.0.14393.4222 servicing stack that has no source from MS (since KB4601392 was pulled by MS). And I'm wondering if the missing assembly for one of the .4222 packages is what is causing newer SSUs from installing. So I ran analyzecomonent store which recomends cleanup. But since the systems isn't 100% fixed, I'm worried that cleanup will cause more problems than it solves.

Code:
C:\temp>dism /online /cleanup-image /analyzecomponentstore

Deployment Image Servicing and Management tool
Version: 10.0.14393.4169

Image Version: 10.0.14393.4169

[===========================99.9%========================= ]

Component Store (WinSxS) information:

Windows Explorer Reported Size of Component Store : 14.07 GB

Actual Size of Component Store : 12.79 GB

    Shared with Windows : 5.63 GB
    Backups and Disabled Features : 6.34 GB
    Cache and Temporary Data : 811.51 MB

Date of Last Cleanup : 2020-07-31 08:53:13

Number of Reclaimable Packages : 1
Component Store Cleanup Recommended : Yes

The operation completed successfully.

Code:
amd64_microsoft-windows-dfsr-core-serveronly_31bf3856ad364e35_10.0.14393.2608_none_1311c90c0284af44
amd64_microsoft-windows-gdi-painting_31bf3856ad364e35_10.0.14393.2791_none_ecf0c25676c8bf29
amd64_microsoft-windows-gdi_31bf3856ad364e35_10.0.14393.2430_none_1f728783b5300536
amd64_microsoft-windows-i..nal-core-locale-nls_31bf3856ad364e35_10.0.14393.2457_none_e059010103ee4fd0
amd64_microsoft-windows-i..nal-core-locale-nls_31bf3856ad364e35_10.0.14393.2791_none_e03d1b1504026f39
amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_10.0.14393.2339_none_8692e4b40f74c9ee
amd64_microsoft-windows-msxml30_31bf3856ad364e35_10.0.14393.2485_none_fe123f2ff17bc8fe
amd64_microsoft-windows-msxml30_31bf3856ad364e35_10.0.14393.2665_none_fdfa9ec3f18dce32
amd64_microsoft-windows-msxml60_31bf3856ad364e35_10.0.14393.4402_none_fe0a40abf182f894
amd64_microsoft-windows-p..ellibrariesbinaries_31bf3856ad364e35_10.0.14393.2339_none_f0657347c95d8ce4
amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.14393.4222_none_7f13461e21e4fea5
amd64_microsoft-windows-usermodensi_31bf3856ad364e35_10.0.14393.2457_none_e802f307221c6ea1
amd64_microsoft-windows-w..for-management-core_31bf3856ad364e35_10.0.14393.2457_none_4006458707b05a54
amd64_microsoft-windows-w..for-management-core_31bf3856ad364e35_10.0.14393.2791_none_3fea5f9b07c479bd
amd64_networking-mpssvc-svc_31bf3856ad364e35_10.0.14393.2457_none_0fb50ba022854b98
wow64_microsoft-windows-gdi_31bf3856ad364e35_10.0.14393.2430_none_29c731d5e990c731

So, today I'm tracking down the KBs for those missing components...
  • 10.0.14393.2339 seems to come from KB4284833 which is NOT currently available on Microsoft Update Catalog.
  • 10.0.14393.2430 seems to come from KB4343887 which is a 'delta' update. However, trying to install it on a repair server with all the SSUs installed results in "The update is not applicable to your computer.". I will try it again on a clean VM with only the specified LCU.
  • 10.0.14393.2457 seems to come from KB4343884 which is NOT currently available from Microsoft Update Catalog. Seems to have been an SSU. There are dism outputs on a few sites, like a serverfault post from 2019 April 6 concerning Windows Server 2016 with a clip from a dism /online /get-targeteditions output that shows Image Version: 10.0.14393.2457. So far, I have not been able to find a KB for it and searching C:\Windows\WinSxS comes up with over 1800 file or folder names but none have a KB reference in their name.
  • 10.0.14393.2485 seems to come from KB4457131 which is a another 'delta' update. It also fails to install on the repair server with the message "The update is not applicable to your computer.".
  • 10.0.14393.2485 also refers Windows 10 Mobile updates! I'm at a loss as the moment to understand why and how that could be an assembly on this server. So I'm not considering this as a possible solution at this time.
  • 10.0.14393.2608 ***** seems to come from KB4467691 which is a delta update and a LCU. The delta update fails on the repair server with "The update is not applicable to your computer." However, the full LCU installs. AND IT DOES resolve these 4 missing components when using SFCFixScriptBuilder (amd64_microsoft-windows-dfsr-core-serveronly_31bf3856ad364e35_10.0.14393.2608_none_1311c90c0284af44, amd64_microsoft-windows-gdi_31bf3856ad364e35_10.0.14393.2430_none_1f728783b5300536, wow64_microsoft-windows-gdi_31bf3856ad364e35_10.0.14393.2430_none_29c731d5e990c731, amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_10.0.14393.2339_none_8692e4b40f74c9ee).
  • 10.0.14393.2665 seems to come from KB4471321 which is yet another 'delta' update. It, surprisingly, succeeded in installing following KB4467691 and a reboot! It resolved amd64_microsoft-windows-msxml30_31bf3856ad364e35_10.0.14393.2665_none_fdfa9ec3f18dce32.
  • 10.0.14393.2791 seems to come from KB4487026 which is another 'delta' update. It also fails to install on the repair server with the message "The update is not applicable to your computer.".
  • 10.0.14393.4222 is NOT from KB5001402 as its article claims. That KB actually has .4227 in it. The article also says it was supposed to replace KB4601392 which has no info page and is also unavailable. KB4601318 seems to have .4225 in it, but is also NOT currently available from Microsoft Update Catalog. I haven't' been able to definitively confirm which KB actually has .4222 in it.
  • 10.0.14292.4402 seems to come from KB5003197. It installed and resolves: amd64_microsoft-windows-msxml30_31bf3856ad364e35_10.0.14393.2665_none_fdfa9ec3f18dce32, and amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.14393.4222_none_7f13461e21e4fea5.
After I apply the SFCFixScript generated by SFXFixScriptBuilder I will try SFC /scannow and see what happens. If that fails (which I expect it to do) I will then start another examination of CBS and DISM logs and, and ComponentsScanner.
 
Is it always the case that the *.man and *.mof and *.manifest files can always be replaced with fresh files from a repair server? i.e. they are static and should never change?
Yes, as long as, they're the same version and have the same hash then the files will always be identical across different systems. However, sometimes a file will be compressed on one machine but not compressed another which can lead to a different hash for two identical files, you can check the value of the corresponding f! mark under the component to determine if this is the case.

After I apply the SFCFixScript generated by SFXFixScriptBuilder I will try SFC /scannow and see what happens. If that fails (which I expect it to do) I will then start another examination of CBS and DISM logs and, and ComponentsScanner.
That identity issue with SFCFixScriptBuilder should be fixed now as well. It seems there is an undocumented character limit when importing keys using the RegEdit format so you have to split the value data across multiple lines. Let me know if there is any missing files still and I can have a look at sourcing them for you. Please provide your latest COMPONENTS hive if that is the case.
 
In my case there are ~120,000 registry entries with invalid or missing c! and f! marks. So, I can't necessarily rely on those f! values being correct. What is the best way to fix all the invalid f! values?

BTW, I've written several powershell scripts that I'm putting on my GitHUb page. The versions there are older than the ones I'm currently using, and some have bugs. But I'll be updating them to working versions and adding some comments/documentation soon(tm).
 
I'm currently going through the entire history of W10/WS2016 KBs to try to find the last few sources for the remaining missing components.
Code:
amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_10.0.14393.2339_none_8692e4b40f74c9ee
amd64_microsoft-windows-i..nal-core-locale-nls_31bf3856ad364e35_10.0.14393.2457_none_e059010103ee4fd0
amd64_microsoft-windows-w..for-management-core_31bf3856ad364e35_10.0.14393.2457_none_4006458707b05a54
amd64_microsoft-windows-usermodensi_31bf3856ad364e35_10.0.14393.2457_none_e802f307221c6ea1
amd64_networking-mpssvc-svc_31bf3856ad364e35_10.0.14393.2457_none_0fb50ba022854b98
amd64_microsoft-windows-msxml30_31bf3856ad364e35_10.0.14393.2485_none_fe123f2ff17bc8fe
amd64_microsoft-windows-gdi-painting_31bf3856ad364e35_10.0.14393.2791_none_ecf0c25676c8bf29
amd64_microsoft-windows-i..nal-core-locale-nls_31bf3856ad364e35_10.0.14393.2791_none_e03d1b1504026f39
amd64_microsoft-windows-w..for-management-core_31bf3856ad364e35_10.0.14393.2791_none_3fea5f9b07c479bd
amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.14393.4222_none_7f13461e21e4fea5

The last one, ending in .4222, seems to be impossible to resolve since the KB that had it in it was pulled by MS and replaced with one that actually has .4227 even though the info page says it has .4222. I may need to find a way to uninstall the .4222 SSU that MS says can't be done.
 
What is the best way to fix all the invalid f! values?
You can use SFCFixScript builder to do that for you if you have a valid key on another machine. If you include the value name as part of your key path then it will only build that missing value and not the entire key. You would use the --components option and then your key path would be like: <key path>\<value name>.

10.0.14393.2339 = KB4284833 (Unavailable)
10.0.14393.2457 = KB4343884 (Unavailable)
10.0.14393.2485 = KB4457131
10.0.14393.2791 = KB4487026

The last one, ending in .4222, seems to be impossible to resolve since the KB that had it in it was pulled by MS and replaced with one that actually has .4227 even though the info page says it has .4222.
It should be part of the .4227 cumulative update, most of the servicing stack updates are packaged as part of a cumulative update. You can remove the servicing stack updates despite Microsoft insisting that you can't but you need the newer one installed to do so.
 
It looks like KB4284833 and KB4343884 have both been removed from the update catalog so if you aren't able to find another machine which has those payload files then you can remove them either using WUSA or manually through FRST (I can provide the script).

FRST Registry Search
1. Click your Start button and type in cmd.
2.After you find the Command Prompt, right click on it and select Run as Administrator.
3. Copy and paste the following into the Command Prompt:

reg load HKLM\COMPONENTS C:\WINDOWS\SYSTEM32\CONFIG\COMPONENTS

4. Please download Farbar Recovery Scan Tool and save it to your Desktop.
Note: You need to run the 64-bit Version so please ensure you download that one.
5. Run FRST64 by Right-Clicking on the file and choosing Run as administrator.
6. Copy and paste KB4284833; KB4343884 into the Search box and click the Search Registry button.
7. When the scan is complete a notepad window will open with the results. Please attach this to your next reply. It is saved on your desktop named SearchReg.txt.
 
Back
Top