DISM - Fixing Component Store Corruption in Windows 8

How to Use DISM to Fix Component Store Corruption in Windows 8 and Windows Server 2012

One of the most used tools when fixing corruption for Vista, Windows 7, Windows Server 2008 and Windows Server 2008 R2 was the System Update and Readiness Tool (KB947821), commonly called CheckSUR. The CheckSUR tool was an excellent way for most people to see what corruption had happened on their store, and potentially fix that corruption if the tool contained the payload to do so.

In Windows 8/8.1 and Windows Server 2012, this has changed. It’s called Inbox Corruption Repair and it brings the functionality of CheckSUR into Windows rather than requiring a separate download to get the utility like you do now. This is exposed in two ways, the first is really unseen by the end user and happens when Windows detects a corrupted state when attempting to install fixes via Windows Update. When this happens, Windows fix the corruption silently and then re-install the prior packages. The manual way to use this tool is via DISM (Deployment Imaging and Servicing Management). The way this is exposed is via the DISM /Cleanup-Image functionality.

If a Windows image (Windows component store) becomes unserviceable, you can use the Deployment Imaging and Servicing Management (DISM) tool to update the files and correct the problem.

For example:

  • To use to fix Windows component store corruption when a SFC /SCANNOW command is unable to repair corrupted system files because the store (source) is corrupted, then run the SFC command again.
  • To use to fix Windows component store corruption when the same Windows Updates continue to appear to be available to install even though they already show successfully installed in update history.

For more information, see:



This tutorial will show you how to do an Inbox Corruption Repair with the DISM /Cleanup-Image tool to fix component store corruption in Windows 8 and Windows Server 2012.

You must be signed in as an administrator to be able to do an Inbox Corruption Repair with the Deployment Imaging and Servicing Management (DISM) tool.

Note   Note
The DISM /Cleanup-Image tool saves it's log files in the file locations below. To be able to view these logs, you would need to copy them from the locations below to your desktop, then open them from your desktop.

C:\Windows\Logs\CBS\CBS.log

C:\Windows\Logs\DISM\dism.log


CBS.log.jpg

DISM.log.jpg

Tip   Tip
If you get an error like below when running a DISM command in an option below, then run the command below and try again afterwards.

Dism.exe /online /Cleanup-Image /StartComponentCleanup


Note   Note
Error: 0x80240021

Failure DISM. No operation was performed.



CONTENTS:

  • Option One: To Run "DISM /Cleanup-Image" tool in an Elevated Command Prompt
  • Option Two: To Run "DISM /Cleanup-Image" tool in an Elevated PowerShell






OPTION ONE

To Run "DISM /Cleanup-Image" tool in an Elevated Command Prompt



1. Open an elevated command prompt.

2. Do step3, step 4, step 5, or step 6 below for what DISM command you would like to use.


3. To Use DISM /CheckHealth Command
Note   Note
You would use /CheckHealth to only check whether the image has been flagged as corrupted by a failed process and whether the corruption can be repaired. This is just a quick way to see if corruption currently exists, and to inform you if there is corruption. This does not fix anything or create a log. This will finish running almost instantly.




A) In the elevated command prompt, copy and paste the command below, press Enter, and go to step 7 below. (see screenshot below)

:ar: Dism /Online /Cleanup-Image /CheckHealth

CMD_CheckHealth.jpg



4. To Use DISM /ScanHealth Command
Note   Note
You would use /ScanHealth to scan the image for component store corruption. This option does not fix any corruption. It only checks for component store corruption and records that corruption to the log file. This can take around 5-10 minutes to finish. It will stay at 20% for a while before continuing.





A) In the elevated command prompt, copy and paste the command below, press Enter, and go to step 7 below. (see screenshot below)

:ar: Dism /Online /Cleanup-Image /ScanHealth

CMD_ScanHealth.jpg



5. To Use DISM /RestoreHealth Command
Note   Note
(recommended) You would use /RestoreHealth to scan the image for component store corruption, perform repair operations automatically, and records that corruption to the log file. This can take around 10-15 minutes up to a few hours to finish depending on the level of corruption. It will stay at 20% for a while before continuing.





A) In the elevated command prompt, copy and paste the command below, press Enter, and go to step 7 below. (see screenshot below)

:ar: Dism /Online /Cleanup-Image /RestoreHealth

CMD_RestoreHealth.jpg



6. To Use DISM /RestoreHealth /Source:wim Command
Note   Note
You would use /Source with /RestoreHealth to specify the location of an install.wim file as the source of known good versions of files that can be used for the repair. This can take around 10-15 minutes up to a few hours to finish depending on the level of corruption. It will stay at 20% for a while before continuing.

This can be useful if step 5 above was not able to repair the Windows image (component store).


The install.wim file will be in the Sources folder of a mounted Windows 8.1 ISO file.





A) In the elevated command prompt, type the command below you want to use, press Enter, and go to step 7 below. (see screenshot below)

:ar: Dism /Online /Cleanup-Image /RestoreHealth /Source:wim:Full Path to install.wim file:1

OR

(To prevent DISM from using Windows Update for online images)
:ar: Dism /Online /Cleanup-Image /RestoreHealth /Source:wim:Full Path to install.wim file:1 /limitaccess

For example:

:ar: Dism /Online /Cleanup-Image /RestoreHealth /Source:wim:D:\sources\install.wim:1 /limitaccess

DISM_RestoreHealth_wim_sources.png



7. If you did step 5 or step 6 above, it is recommended to restart the computer to fully apply.






OPTION TWO

To Run "DISM /Cleanup-Image" tool in an Elevated PowerShell



1. Open an elevated PowerShell.

2. Do step3, step 4, step 5, or step 6 below for what DISM command you would like to use.


3. To Use DISM /CheckHealth Command
Note   Note
You would use /CheckHealth to only check whether the image has been flagged as corrupted by a failed process and whether the corruption can be repaired. This is just a quick way to see if corruption currently exists, and to inform you if there is corruption. This does not fix anything or create a log. This will finish running almost instantly.




A) In the elevated command prompt, copy and paste the command below, press Enter, and go to step 7 below. (see screenshot below)

:arrow: Repair-WindowsImage /Cleanup-Image /CheckHealth

PowerShell_CheckHealth.jpg



4. To Use DISM /ScanHealth Command
Note   Note
You would use /ScanHealth to scan the image for component store corruption. This option does not fix any corruption. It only checks for component store corruption and records that corruption to the log file. This can take around 5-10 minutes to finish. It will stay at 20% for a while before continuing.




A) In the elevated command prompt, copy and paste the command below, press Enter, and go to step 7 below. (see screenshot below)

:arrow: Repair-WindowsImage /Cleanup-Image /ScanHealth

PowerShell_ScanHealth.jpg



5. To Use DISM /RestoreHealth Command
Note   Note
(recommended) You would use /RestoreHealth to scan the image for component store corruption, perform repair operations automatically, and records that corruption to the log file. This can take around 10-15 minutes up to a few hours to finish depending on the level of corruption. It will stay at 20% for a while before continuing.





A) In the elevated command prompt, copy and paste the command below, press Enter, and go to step 7 below. (see screenshot below)

:arrow: Repair-WindowsImage /Cleanup-Image /RestoreHealth

PowerShell_RestoreHealth.jpg



6. To Use DISM /RestoreHealth /Source:wim Command
Note   Note
You would use /Source with /RestoreHealth to specify the location of an install.wim file as the source of known good versions of files that can be used for the repair. This can take around 10-15 minutes up to a few hours to finish depending on the level of corruption. It will stay at 20% for a while before continuing.

This can be useful if step 5 above was not able to repair the Windows image (component store).


The install.wim file will be in the Sources folder of a mounted Windows 8.1 ISO file.





A) In the elevated command prompt, type the command below you want to use, press Enter, and go to step 7 below. (see screenshot below)

:ar: Dism /Online /Cleanup-Image /RestoreHealth /Source:wim:Full Path to install.wim file:1

OR

(To prevent DISM from using Windows Update for online images)
:ar: Dism /Online /Cleanup-Image /RestoreHealth /Source:wim:Full Path to install.wim file:1 /limitaccess

For example:

:ar: Dism /Online /Cleanup-Image /RestoreHealth /Source:wim:D:\sources\install.wim:1 /limitaccess

PowerShell_DISM_RestoreHealth_wim_sources.png



7. If you did step 5, step 6, or step 7 above, it is recommended to restart the computer to fully apply.





That's it,
Shawn


 

Attachments

  • Command_Prompt.png
    Command_Prompt.png
    3.4 KB · Views: 576
Last edited by a moderator:

Attachments

  • New WinZip File.zip
    2.9 KB · Views: 486

My Computer

System One

  • OS
    Windows 8.1 professional x64 + WMC
    System Manufacturer/Model
    Acer Aspire 5920
    CPU
    Core 2 duo T5550
    Motherboard
    ACER CHAPALA
    Memory
    4GB DDR2
    Graphics Card(s)
    Intel GMA X3100
    Screen Resolution
    1280 X 800
    Hard Drives
    160 GB HDD
Hell Manjunath,

If you haven't already, you could try uninstalling that Windows Update, or doing a system restore using a restore point dated before this to see if you may be able to run SFC or DISM afterwards.

Hope this may help for now. :)
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
Hello Brink
and really thanks for this forium web and your usefull tut
I scan my windows 8.1 by sfc/scannow and give me this error in 72% procces :

"Windows Resource Protection found corrupt files but was unable to fix someof them. Details are included in the CBS.Log windir\Logs\CBS\CBS.log. For
example C:\Windows\Logs\CBS\CBS.log. Note that logging is currently not
supported in offline servicing scenarios."

I scan my windows because the windows charms search bar hanging after I run it and force me to restart just with power key
could you please help me to resolve this problem and fix CBS.log file
thanks
have fun time
 

My Computer

System One

  • OS
    windows 8 X64
Hello Amirchermahini, and welcome to Eight Forums.

That means that SFC was unable to repair some of the files since the files needed to repair them with in the component store are also corrupted.

You could run the command below in this tutorial to repair the component store. Afterwards try running the SFC scan again to see if it's able to repair the corrupted system files it found.

Dism /Online /Cleanup-Image /RestoreHealth


Hope this helps, :)
Shawn
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
I'm stuck. I used to run the Dism /Online /Cleanup-Image /RestoreHealth command relatively frequently, and it always worked fine. Now, I'm getting the following error after running it:

The restore operation failed. Either the repair source was not found or the component store cannot be repaired.

I searched for a solution, and found advice to use the /LimitAccess switch. I never had to use that before, however, and it didn't help now. I'm doing this on my home PC, not in any sort of enterprise or other managed environment.

When I run the Dism /Online /Cleanup-Image /ScanHealth and Dism /Online /Cleanup-Image /CheckHealth commands, I get:

The component store is repairable.
The operation completed successfully.

When I run sfc /ScanNow, I get:

Windows Resource Protection did not find any integrity violations.

Can anyone help me get Dism to run as it should?
 

My Computer

System One

  • OS
    Windows 8.1 Pro x64
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Maingear Shift
    CPU
    Intel 3970x (Overclocked to ~4.2 GHz)
    Motherboard
    Asus Rampage IV Extreme
    Memory
    16 GB
    Graphics Card(s)
    Nvidia Titans (2 in SLI)
    Sound Card
    Creative Sound Blaster Z
    Monitor(s) Displays
    Acer T272hl
    Screen Resolution
    1920 x 1080
    Hard Drives
    Samsung SSD 840 PRO (512 GB)
    Western Digital Black (4 TB)
    Western Digital Black (4 TB)
    Western Digital (300 GB)
    PSU
    Corsair Professional Digital Series AX1200i
    Case
    Maingear Shift (Modified Silverstone Raven)
    Cooling
    Maingear EPIC 180 Supercooler
    Keyboard
    Logitech G710+
    Mouse
    Logitech MX518
    Browser
    Firefox
    Antivirus
    Avira Antivirus Suite
    Other Info
    Is anyone actually reading this?
Hello crosspatch, and welcome to Eight Forums.

If SFC didn't find any issues, then you should be good to go and don't need to run Dism. :)
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
Thank you. I understand that there is no corruption now, but I want Dism to work if/when I need it to in the future. And since it always used to run without a problem, this bothers me.
 

My Computer

System One

  • OS
    Windows 8.1 Pro x64
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Maingear Shift
    CPU
    Intel 3970x (Overclocked to ~4.2 GHz)
    Motherboard
    Asus Rampage IV Extreme
    Memory
    16 GB
    Graphics Card(s)
    Nvidia Titans (2 in SLI)
    Sound Card
    Creative Sound Blaster Z
    Monitor(s) Displays
    Acer T272hl
    Screen Resolution
    1920 x 1080
    Hard Drives
    Samsung SSD 840 PRO (512 GB)
    Western Digital Black (4 TB)
    Western Digital Black (4 TB)
    Western Digital (300 GB)
    PSU
    Corsair Professional Digital Series AX1200i
    Case
    Maingear Shift (Modified Silverstone Raven)
    Cooling
    Maingear EPIC 180 Supercooler
    Keyboard
    Logitech G710+
    Mouse
    Logitech MX518
    Browser
    Firefox
    Antivirus
    Avira Antivirus Suite
    Other Info
    Is anyone actually reading this?
Usually when Dism fails, you'll need to reinstall Windows. :(
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
hi guys

i ve followed the option one got errors ,and then tried the powershell method again error,
please see the attached screencopy

any way to sort this out?

thanks
eror.jpg
 

My Computer

System One

  • OS
    WIN8
    Computer type
    Laptop
Hello Papadamam, and welcome to Eight Forums.

Usually when Dism fails, you'll need to reinstall Windows. :(
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
Hello Papadamam, and welcome to Eight Forums.

Usually when Dism fails, you'll need to reinstall Windows. :(

the issue is that i have upgraded it from win7 online
i have 2 questions :
if i reinstall will i loose all the progr and datas?
and where can i find the install files as i didn t copy it?

thanks
 

My Computer

System One

  • OS
    WIN8
    Computer type
    Laptop
Last edited:

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
Yes, reinstalling will give you fresh (blank) installation of Windows 8. You'll need to reinstall all your programs and drivers, and copy any data back.

The tutorial below can help show you how to download a Windows 8 ISO below.

http://www.eightforums.com/tutorials/18309-windows-8-upgrade-iso-download-create.html


You could try to refresh or reset Windows 8 first.

this is something i want to avoid

here is the errors i m getting with sfc:

Code:
2013-09-06 23:18:54, Info                  CSI    0000000e [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:18:54, Info                  CSI    0000000f [SR] Beginning Verify and Repair transaction
2013-09-06 23:19:00, Info                  CSI    00000010 [SR] Verify complete
2013-09-06 23:19:01, Info                  CSI    00000011 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:19:01, Info                  CSI    00000012 [SR] Beginning Verify and Repair transaction
2013-09-06 23:19:02, Info                  CSI    00000013 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:02, Info                  CSI    00000014 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:02, Info                  CSI    00000015 [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:02, Info                  CSI    00000016 [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:04, Info                  CSI    00000017 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:04, Info                  CSI    00000018 [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:19:04, Info                  CSI    00000019 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:04, Info                  CSI    0000001a [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:19:05, Info                  CSI    0000001b [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:05, Info                  CSI    0000001c [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:19:05, Info                  CSI    0000001d [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:05, Info                  CSI    0000001e [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:19:08, Info                  CSI    0000001f [SR] Verify complete
2013-09-06 23:19:08, Info                  CSI    00000020 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:19:08, Info                  CSI    00000021 [SR] Beginning Verify and Repair transaction
2013-09-06 23:19:15, Info                  CSI    00000022 [SR] Verify complete
2013-09-06 23:19:15, Info                  CSI    00000023 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:19:15, Info                  CSI    00000024 [SR] Beginning Verify and Repair transaction
2013-09-06 23:19:23, Info                  CSI    00000025 [SR] Verify complete
2013-09-06 23:19:23, Info                  CSI    00000026 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:19:23, Info                  CSI    00000027 [SR] Beginning Verify and Repair transaction
2013-09-06 23:19:24, Info                  CSI    00000028 [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:24, Info                  CSI    00000029 [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:24, Info                  CSI    0000002a [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:30, Info                  CSI    0000002b [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:30, Info                  CSI    0000002c [SR] This component was referenced by [l:204{102}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_3ware"
2013-09-06 23:19:31, Info                  CSI    0000002d [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:31, Info                  CSI    0000002e [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:19:31, Info                  CSI    0000002f [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:31, Info                  CSI    00000030 [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:19:32, Info                  CSI    00000031 [SR] Verify complete
2013-09-06 23:19:32, Info                  CSI    00000035 [SR] Repairing 4 components
2013-09-06 23:19:32, Info                  CSI    00000036 [SR] Beginning Verify and Repair transaction
2013-09-06 23:19:32, Info                  CSI    00000037 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000038 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000039 [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000003a [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000003b [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000003c [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000003d [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000003e [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000003f [SR] This component was referenced by [l:204{102}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_3ware"
2013-09-06 23:19:32, Info                  CSI    00000040 [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000041 [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:19:32, Info                  CSI    00000042 [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000043 [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:19:32, Info                  CSI    00000044 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000045 [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:19:32, Info                  CSI    00000046 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000047 [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:19:32, Info                  CSI    00000048 [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    00000049 [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:19:32, Info                  CSI    0000004a [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:19:32, Info                  CSI    0000004b [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:19:32, Info                  CSI    0000004c [SR] Repair complete
2013-09-06 23:19:32, Info                  CSI    0000004d [SR] Committing transaction
2013-09-06 23:19:32, Info                  CSI    00000052 [SR] Verify and Repair Transaction completed. All files and registry keys listed in this transaction  have been successfully repaired
2013-09-06 23:57:47, Info                  CSI    0000000e [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:57:47, Info                  CSI    0000000f [SR] Beginning Verify and Repair transaction
2013-09-06 23:57:51, Info                  CSI    00000010 [SR] Verify complete
2013-09-06 23:57:51, Info                  CSI    00000011 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:57:51, Info                  CSI    00000012 [SR] Beginning Verify and Repair transaction
2013-09-06 23:57:51, Info                  CSI    00000013 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:51, Info                  CSI    00000014 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:51, Info                  CSI    00000015 [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:51, Info                  CSI    00000016 [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:51, Info                  CSI    00000017 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:51, Info                  CSI    00000018 [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:57:51, Info                  CSI    00000019 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:51, Info                  CSI    0000001a [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:57:52, Info                  CSI    0000001b [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:52, Info                  CSI    0000001c [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:57:52, Info                  CSI    0000001d [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:57:52, Info                  CSI    0000001e [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:57:55, Info                  CSI    0000001f [SR] Verify complete
2013-09-06 23:57:56, Info                  CSI    00000020 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:57:56, Info                  CSI    00000021 [SR] Beginning Verify and Repair transaction
2013-09-06 23:58:00, Info                  CSI    00000022 [SR] Verify complete
2013-09-06 23:58:00, Info                  CSI    00000023 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:58:00, Info                  CSI    00000024 [SR] Beginning Verify and Repair transaction
2013-09-06 23:58:05, Info                  CSI    00000025 [SR] Verify complete
2013-09-06 23:58:05, Info                  CSI    00000026 [SR] Verifying 100 (0x0000000000000064) components
2013-09-06 23:58:05, Info                  CSI    00000027 [SR] Beginning Verify and Repair transaction
2013-09-06 23:58:05, Info                  CSI    00000028 [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:05, Info                  CSI    00000029 [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:05, Info                  CSI    0000002a [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:08, Info                  CSI    0000002b [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:08, Info                  CSI    0000002c [SR] This component was referenced by [l:204{102}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_3ware"
2013-09-06 23:58:08, Info                  CSI    0000002d [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:08, Info                  CSI    0000002e [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:58:08, Info                  CSI    0000002f [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:08, Info                  CSI    00000030 [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:58:09, Info                  CSI    00000031 [SR] Verify complete
2013-09-06 23:58:09, Info                  CSI    00000035 [SR] Repairing 4 components
2013-09-06 23:58:09, Info                  CSI    00000036 [SR] Beginning Verify and Repair transaction
2013-09-06 23:58:09, Info                  CSI    00000037 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000038 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000039 [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000003a [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000003b [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000003c [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000003d [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000003e [SR] Cannot repair member file [l:26{13}]"3ware.inf_loc" of 3ware.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000003f [SR] This component was referenced by [l:204{102}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_3ware"
2013-09-06 23:58:09, Info                  CSI    00000040 [SR] Cannot repair member file [l:18{9}]"3ware.sys" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000041 [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:58:09, Info                  CSI    00000042 [SR] Cannot repair member file [l:18{9}]"3ware.inf" of 3ware.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000043 [SR] This component was referenced by [l:194{97}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_3ware"
2013-09-06 23:58:09, Info                  CSI    00000044 [SR] Cannot repair member file [l:32{16}]"1394ohci.sys.mui" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000045 [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:58:09, Info                  CSI    00000046 [SR] Cannot repair member file [l:24{12}]"1394.inf_loc" of 1394.inf.Resources, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10{5}]"en-US", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000047 [SR] This component was referenced by [l:202{101}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~en-GB~6.2.9200.16384.INF_1394"
2013-09-06 23:58:09, Info                  CSI    00000048 [SR] Cannot repair member file [l:24{12}]"1394ohci.sys" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    00000049 [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:58:09, Info                  CSI    0000004a [SR] Cannot repair member file [l:16{8}]"1394.inf" of 1394.inf, Version = 6.2.9200.16384, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type = [l:24{12}]"driverUpdate", TypeName neutral, PublicKey neutral in the store, file is missing
2013-09-06 23:58:09, Info                  CSI    0000004b [SR] This component was referenced by [l:192{96}]"Microsoft-Windows-Common-Drivers-Package-drivers~31bf3856ad364e35~amd64~~6.2.9200.16384.INF_1394"
2013-09-06 23:58:10, Info                  CSI    0000004c [SR] Repair complete
2013-09-06 23:58:10, Info                  CSI    0000004d [SR] Committing transaction
2013-09-06 23:58:10, Info                  CSI    00000052 [SR] Verify and Repair Transaction completed. All files and registry keys listed in this transaction  have been successfully repaired


anyway to repair this without reinstall?

thanks
 
Last edited by a moderator:

My Computer

System One

  • OS
    WIN8
    Computer type
    Laptop
Looks like you have an issue with corrupted files from your LSI 3ware RAID Controller driver. You might see if after reinstalling it, you may be able to successfully run SFC or DISM again to repair the others.
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
Looks like you have an issue with corrupted files from your LSI 3ware RAID Controller driver. You might see if after reinstalling it, you may be able to successfully run SFC or DISM again to repair the others.
i ve seen also the 1394.inf
is there another driver?

do you have the link for this?

thanks
 

My Computer

System One

  • OS
    WIN8
    Computer type
    Laptop
1394 is the included generic firewire driver in Windows 8. No need to do anything with it.
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
That will be available at your laptop manufacturer's driver download webpage.

What brand and model number is your laptop?
 

My Computer

System One

  • OS
    64-bit Windows 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Custom self built
    CPU
    Intel i7-8700K OC'd to 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G7 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    OCZ Series Gold OCZZ1000M 1000W
    Case
    Thermaltake Core P3
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gb/s Download and 35 Mb/s Upload
    Browser
    Internet Explorer 11
    Antivirus
    Malwarebyte Anti-Malware Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
Back
Top