共用方式為


INF DDInstall.Services 區段

每個模型 DDInstallServices 區段包含一或多個 INF AddService 指示詞,這些指示 詞會參考 INF 檔案中的其他 INF 寫入器定義區段。

[install-section-name.Services] |
[install-section-name.nt.Services] |
[install-section-name.ntx86.Services] |
[install-section-name.ntia64.Services] | (Windows XP and later versions of Windows)
[install-section-name.ntamd64.Services] | (Windows XP and later versions of Windows)
[install-section-name.ntarm.Services] | (Windows 8 and later versions of Windows)
[install-section-name.ntarm64.Services] (Windows 10 version 1709 and later versions of Windows)
 
AddService=ServiceName,[flags],service-install-section
                     [,event-log-install-section[,[EventLogType][,EventName]]]...]
[DelService=ServiceName[,[flags][,[EventLogType][,EventName]]]]...
[Include=filename.inf[,filename2.inf]...]
[Needs=inf-section-name[,inf-section-name]...] 

您可以提供 DDInstall具有至少一個 AddService 指示詞的服務區段,可控制載入特定驅動程式之服務的方式和時機、其他服務或驅動程式的相依性等等。 您也可以選擇性地指定事件記錄服務。

項目

AddService=ServiceName, [flags],service-install-section[,event-log-install-section[,[EventLogType][EventName]]]...

這個指示詞會參考 INF-writer-defined service-install-section,而且可能是 INF 檔案中其他位置的事件記錄檔 install-section,用於此 DDInstall 區段所涵蓋之裝置的驅動程式。 如需詳細資訊,請參閱 INF AddService 指示詞

DelService=ServiceName [,[flags][,[EventLogType][,EventName]]]...

這個指示詞會從目標計算機移除先前安裝的服務。 這個指示詞很少使用。 如需詳細資訊,請參閱 INF DelService 指示詞

包含=filename.inf [,filename2.inf]...

這個選擇性專案會指定一或多個其他系統提供的 INF 檔案,其中包含安裝此裝置所需的區段。 如果指定此專案,則為 [需要] 專案。

需要=inf-section-name [,inf-section-name]...

這個選擇性專案會指定在安裝此裝置期間必須處理的區段。 一般而言,區段是 DDInstall系統提供的 INF 檔案內的 Services 區段,該檔案列在 Include 專案中。 不過,它可以是 DDInstall參考的任何區段。服務區段。

備註

DDInstall服務 區段應該具有與其相關 DDInstall 區段相同的平臺和操作系統裝飾。 例如, install-section-namentx86 區段會有對應的 install-section-namentx86。服務 區段。

指定的 DDInstall 區段必須參考 INF 檔案中每個製造商 型號 區段下的裝置/型號特定專案。 正式語法語句中顯示的install-section-name 不區分大小寫的擴充功能可以插入這類 DDInstall 中。跨平臺 INF 檔案中的服務區段名稱。

如需如何使用系統定義的 .nt、.ntx86、.ntia64、.ntamd64.ntarm 和 .ntarm64 延伸模組的詳細資訊,請參閱建立多個平臺和操作系統的 INF 檔案。

範例

此範例顯示 install-section-nameNt。INF 檔案中的 Services 區段及其 service-install-sections,適用於將函式驅動程式和篩選驅動程式新增至裝置的範例驅動程式套件。

[Example_DDInstall.Services]
AddService=ExampleFunctionDriver,0x00000002,function_ServiceInstallSection
AddService=ExampleUpperFilter,,filter_ServiceInstallSection

[function_ServiceInstallSection]
DisplayName    = %function_ServiceDesc%
ServiceType    = 1
StartType      = 3
ErrorControl   = 1
ServiceBinary  = %13%\ExampleFunctionDriver.sys

[filter_ServiceInstallSection]
DisplayName    = %filter_ServiceDesc%
ServiceType    = 1
StartType      = 3
ErrorControl   = 1
ServiceBinary  = %13%\ExampleUpperFilter.sys

[Strings] ; only immediately preceding %strkey% tokens shown here
%function_ServiceDesc%="Example function driver service"
%filter_ServiceDesc%="Example filter driver service"

如需 DDInstall 的詳細資訊,請參閱 INF DDInstall.HW 一節 包含 AddService 指示詞所參考之部分 service-install-section s 的服務區段,包括 PnP 篩選驅動程式的一個。

另請參閱