使用inf文件安裝文件系統驅動程序的三種方式

After you have created an INF file, you can use it to install, upgrade, and uninstall your file system filter driver. You can use the INF file alone or together with a batch file or a user-mode setup application.

Right-Click Install

To execute the DefaultInstall and DefaultInstall.Services sections of your INF file, you should do the following:

  1. In Windows Explorer, right-click the INF file name. A shortcut menu will appear.

  2. Click Install.

Note The shortcut menu appears only if the INF file contains aDefaultInstall section.

Command-Line or Batch File Install

To execute the DefaultInstall and DefaultInstall.Services sections of your INF file on the command line or by using a batch file installation, type the following command at the command prompt, or create and run a batch file that contains this command:

RUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection DefaultInstall 132 path-to-inf\infname.inf

"Rundll32" and "InstallHinfSection" are described in the Tools and Setup and System Administration sections, respectively, of the Microsoft Windows SDK documentation.

Setup Application

InstallHinfSection can also be called from a setup application, as shown in the following code example:

InstallHinfSection(NULL,NULL,TEXT("DefaultInstall 132 path-to-inf\infname.inf"),0);

If you use a setup application to install your driver, observe the following guidelines:

  • To prepare for eventual uninstall, the setup application should copy the driver INF file to an uninstall directory.

  • If the setup application installs a user-mode application with the driver, this application should be listed in Add or Remove Programs in Control Panel so that the user can uninstall it if desired. Only one item should be listed, representing both the application and the driver.

    For more information about how to list your application in Add or Remove Programs, see "Removing an Application" in the Setup and System Administration section of the Windows SDK documentation.

  • Setup applications should never copy driver INF files to the Windows INF file directory (%windir%\INF). SetupAPI copies the files there automatically as part of theInstallHinfSection call.

For more information about setup applications, see Writing a Device Installation Application.


原文鏈接:https://msdn.microsoft.com/windows/hardware/drivers/ifs/using-an-inf-file-to-install-a-file-system-filter-driver

發佈了42 篇原創文章 · 獲贊 5 · 訪問量 11萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章