I’ve modified msahci and called my driver a new name. how can i replace msahci? i’ve found the imagepath in the registry but changing that results in my new driver and msachi being loaded. i don’t want msahci loaded at all.
how can i do this?
thanks
I’ve modified msahci and called my driver a new name. how can i replace msahci? i’ve found the imagepath in the registry but changing that results in my new driver and msachi being loaded. i don’t want msahci loaded at all.
how can i do this?
thanks
Run Update in Device manager, or map to the new driver SYS file using .kdfiles and a mapping file.
Gary G. Little
----- Original Message -----
From: xxxxx@yahoo.com
To: “Windows System Software Devs Interest List”
Sent: Monday, March 21, 2011 2:09:40 PM
Subject: [ntdev] Replace MSAHCI
I’ve modified msahci and called my driver a new name. how can i replace msahci? i’ve found the imagepath in the registry but changing that results in my new driver and msachi being loaded. i don’t want msahci loaded at all.
how can i do this?
thanks
—
NTDEV is sponsored by OSR
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
thanks gary. i will do that at some point but for now i just did it the simple way by re-naming msahci to _oldmsahci and using mine as the “real” msahci.
Hi,
You can delete msahci driver and install your driver with your inf file.
On Tue, Mar 22, 2011 at 3:09 AM, wrote:
> I’ve modified msahci and called my driver a new name. how can i replace msahci? i’ve found the imagepath in the registry but changing that results in my new driver and msachi being loaded. i don’t want msahci loaded at all.
>
> how can i do this?
>
> thanks
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
>
>
use devcon to update your driver
devcon.exe update your_ahci.inf PCI\CC_010601
in the WDK msahci does not have an inf file. is there some other example inf file for a miniport driver?
Look in %windir%\inf for the INF for msachi.
d
-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@yahoo.com
Sent: Thursday, March 31, 2011 3:41 PM
To: Windows System Software Devs Interest List
Subject: RE:[ntdev] Replace MSAHCI
in the WDK msahci does not have an inf file. is there some other example inf file for a miniport driver?
NTDEV is sponsored by OSR
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
it is called %windir%\inf\mshdc.inf.
thanks a lot.