opjose
New member
- Mar 13, 2021
- 3
Hi
I am currently experiencing a small problem trying to run SFC /SCANNOW on a Windows 2016 Virtual Hyper-V Client server that is running Exchange 2016.
The issue seems to be related to a single .NET4 file with a mismatched hash.
DISM reports no image problems and "restorehealth" works fine.
I am unable to run SFCFix on this server as it crashes with an unknown exception error.
So I utilized Powershell to create the relevant files.
I first cleared the existing CBS.LOG and DISM log files.
I then ran DISM /Online /cleanup-image /restorehealth which completed successfully.
Next I then ran SFC /VERIFYONLY
I created the attached file using the following Powershell commaands.
ni -ItemType Directory $env:SystemDrive\PSLogs\SfcDism\ | Out-Null
cpi -Path $env:windir\Logs\CBS\*.log -Destination $env:SystemDrive\PSLogs\SfcDism\
findstr /c:"[SR]" $env:windir\logs\CBS\cbs.log > $env:SystemDrive\PSLogs\SfcDism\sfcdetails.txt
cpi -Path $env:windir\Logs\DISM\*.log -Destination $env:SystemDrive\PSLogs\SfcDism\
Compress-Archive -Force -Path $env:SystemDrive\PSLogs -DestinationPath $env:SystemDrive\PSLogs.zip
I notice that there is only one reported problem.
Cannot repair member file [l:16]'ServiceModel.mof' of NetFx4-ServiceModel_mof_files, version 4.0.15744.970
How can I fix this manually since SFCFIX does not run?
I do have other 2016 servers that pass the SFC /SCANNOW routines.
Thank you!
I am currently experiencing a small problem trying to run SFC /SCANNOW on a Windows 2016 Virtual Hyper-V Client server that is running Exchange 2016.
The issue seems to be related to a single .NET4 file with a mismatched hash.
DISM reports no image problems and "restorehealth" works fine.
I am unable to run SFCFix on this server as it crashes with an unknown exception error.
So I utilized Powershell to create the relevant files.
I first cleared the existing CBS.LOG and DISM log files.
I then ran DISM /Online /cleanup-image /restorehealth which completed successfully.
Next I then ran SFC /VERIFYONLY
I created the attached file using the following Powershell commaands.
ni -ItemType Directory $env:SystemDrive\PSLogs\SfcDism\ | Out-Null
cpi -Path $env:windir\Logs\CBS\*.log -Destination $env:SystemDrive\PSLogs\SfcDism\
findstr /c:"[SR]" $env:windir\logs\CBS\cbs.log > $env:SystemDrive\PSLogs\SfcDism\sfcdetails.txt
cpi -Path $env:windir\Logs\DISM\*.log -Destination $env:SystemDrive\PSLogs\SfcDism\
Compress-Archive -Force -Path $env:SystemDrive\PSLogs -DestinationPath $env:SystemDrive\PSLogs.zip
I notice that there is only one reported problem.
Cannot repair member file [l:16]'ServiceModel.mof' of NetFx4-ServiceModel_mof_files, version 4.0.15744.970
How can I fix this manually since SFCFIX does not run?
I do have other 2016 servers that pass the SFC /SCANNOW routines.
Thank you!