我正在尝试编写 C++ 代码以编程方式安装 NDIS 6.0 轻量级过滤器驱动程序。在查看了 WinDDK、在线示例和 MSDN 文档后,我最终得到了下面的代码示例。
**************
hr = InstallSpecifiedComponent(
ModuleFileName,
L"MS_NdisLwf",
&GUID_DEVCLASS_NETSERVICE
);
**************
hr = HrInstallNetComponent(
pnc,
lpszPnpID,
pguidClass,
lpszInfFile
);
**************
if ( !SetupCopyOEMInfW(lpszInfFullPath,
DirWithDrive, // Other files are in the same dir.as primary INF
SPOST_PATH, // SPOST_NONE, //First param is path to INF
0, // Default copy style
NULL,// Name of the INF after it's copied to %windir%\inf
0, // Max buf. size for the above
NULL, // Required size if non-null
NULL) // Optionally get the filename part of Inf name
after it is copied.
)
{
----
}
***************
hr = HrInstallComponent( pnc,
lpszComponentId,
pguidClass );
***************
hr = pnc->QueryNetCfgClass ( pguidClass,
IID_INetCfgClassSetup,
(void**)&pncClassSetup );
if ( hr == S_OK ) {
wprintf(L"\n No Test\n");
hr = pncClassSetup->Install( szComponentId,
&OboToken,
0,
0, // Upgrade from build number.
NULL, // Answerfile name
NULL, // Answerfile section name
&pncc ); // Reference after the component
if ( S_OK == hr ) { ... } // is installed.
使用 INetCfgClassSetup::Install 的路径不起作用。
它采用“从磁盘浏览选项”中的默认路径
例如:我的 inf 文件路径是 C:\Users\Mani\Desktop\sagar\objchk_win7_x86\i386\netlwf.inf
但它要求有磁盘菜单中的默认路径(第一个条目)
d:\软件\filter_driver
类似于图像 ==> http://i.stack.imgur.com/tmyMX.png
它总是要求相同的 sys 文件。
有什么遗漏吗?