Try this command from an elevated command prompt and then paste here the content of
DriversInfo.txt that should appear on your desktop, possibly inside
hide and
code forum tags or at least
code tag only:
(sc queryex SahdIa32 && sc qc SahdIa32 && sc queryex SaibIa32 && sc qc SaibIa32 && sc queryex c2scsi && sc qc c2scsi && sc queryex saibvd32 && sc qc saibvd32) > "%userprofile%\desktop\DriversInfo.txt"
Next step could be to use the
sc delete command,
after approval by moderators/admins.
Here's the output:
SERVICE_NAME: SahdIa32
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: SahdIa32
TYPE : 1 KERNEL_DRIVER
START_TYPE : 0 BOOT_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : \SystemRoot\System32\Drivers\SahdIa32.sys
LOAD_ORDER_GROUP : Filter
TAG : 2
DISPLAY_NAME : HDD Filter Driver
DEPENDENCIES :
SERVICE_START_NAME :
SERVICE_NAME: SaibIa32
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: SaibIa32
TYPE : 1 KERNEL_DRIVER
START_TYPE : 0 BOOT_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : \SystemRoot\System32\Drivers\SaibIa32.sys
LOAD_ORDER_GROUP : PnP Filter
TAG : 5
DISPLAY_NAME : Volume Filter Driver
DEPENDENCIES :
SERVICE_START_NAME :
SERVICE_NAME: c2scsi
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: c2scsi
TYPE : 1 KERNEL_DRIVER
START_TYPE : 1 SYSTEM_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : system32\DRIVERS\c2scsi.sys
LOAD_ORDER_GROUP : SCSI Miniport
TAG : 64
DISPLAY_NAME : c2scsi
DEPENDENCIES :
SERVICE_START_NAME :
SERVICE_NAME: saibvd32
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: saibvd32
TYPE : 1 KERNEL_DRIVER
START_TYPE : 1 SYSTEM_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : System32\Drivers\SaibVd32.sys
LOAD_ORDER_GROUP :
TAG : 5
DISPLAY_NAME : Virtual Disk Driver
DEPENDENCIES :
SERVICE_START_NAME :
I found the following by haven't tried it. Please let me know if it is an advisable (relatively safe) thing to try:
"Drivers have a corresponding service entry in the registry (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services). Each of the keys that represents a driver has a "Start" value of type REG_DWORD that specifies the startup type from the driver." The table below is pasted as HTML:
<table border="1" cellpadding="2" cellspacing="2"> <tbody>
<tr> <td valign="top">MSinfo32.exe Start Mode</td> <td valign="top">Startup Type</td> <td valign="top">Value</td> <td valign="top">Description</td> </tr>
<tr> <td valign="top">Boot</td> <td valign="top">SERVICE_BOOT_START</td> <td valign="top">0x00000000</td> <td valign="top">Drivers that need to be loaded by the boot loader to successfully boot the system.</td> </tr>
<tr> <td valign="top">System</td> <td valign="top">SERVICE_SYSTEM_START</td> <td valign="top">0x00000001</td> <td valign="top">The driver is not required for system start, but identifies a device that the associated bus driver cannot enumerate.</td> </tr>
<tr> <td valign="top">Auto</td> <td valign="top">SERVICE_AUTO_START</td> <td valign="top">0x00000002</td> <td valign="top">The driver is started automatically, but is not required at system boot time.</td> </tr>
<tr> <td valign="top">Manual</td> <td valign="top">SERVICE_DEMAND_START</td> <td valign="top">0x00000003</td> <td valign="top">The driver is started on demand by either the service control manager or the PnP manager. This setting is used when the driver is not required at boot time.</td> </tr>
<tr> <td valign="top">Disabled</td> <td valign="top">SERVICE_DISABLED</td> <td valign="top">0x00000004</td> <td valign="top">The driver does not start in this case.</td> </tr>
</tbody> </table>