INF DefaultInstall.Services 區段
警告
如果您要建置通用或 Windows 驅動程式套件,本節無效。 請參閱 使用通用 INF 檔案 和 開始開發 Windows 驅動程式。
DefaultInstall.Services 區段包含一或多個 AddService 指示詞,參考 INF 檔案中的其他 INF 寫入器定義區段。 本節相當於 INF DDInstall。服務區段,與 INF DefaultInstall 區段相關聯。
[DefaultInstall.Services] |
[DefaultInstall.nt.Services] |
[DefaultInstall.ntx86.Services] |
[DefaultInstall.ntia64.Services] | (Windows XP and later versions of Windows)
[DefaultInstall.ntamd64.Services] | (Windows XP and later versions of Windows)
[DefaultInstall.ntarm.Services] | (Windows 8 and later versions of Windows)
[DefaultInstall.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]...]
項目
AddService=ServiceName,[flags],service-install-section[,event-log-install-section[,[EventLogType][,EventName]]]...
這個指示詞會參考 INF-writer-defined service-install-section,而且可能參考此 DefaultInstall 區段所涵蓋驅動程式的 INF 檔案中其他地方的事件記錄檔 install-section。
如需詳細資訊,請參閱 INF AddService 指示詞。
DelService=ServiceName[,[flags][,[EventLogType][,EventName]]]...
這個指示詞會從目標計算機移除先前安裝的服務。 這個指示詞很少使用。
如需詳細資訊,請參閱 INF DelService 指示詞。
Include=filename。inf[,filename2.inf]...
此選擇性專案會指定一或多個額外的系統提供的 INF 檔案,其中包含安裝此裝置所需的區段。 如果指定此專案,通常是 需要 專案。
Needs=inf-section-name[,inf-section-name]...
這個選擇性專案會指定此裝置安裝期間必須處理的特定具名區段。 一般而言,這類具名區段是 DDInstall。系統提供的 INF 檔案內的 Services 區段,該檔案列在 Include 專案中。 不過,它可以是這類 DDInstall 內參考的任何區段。服務 區段。
備註
AddService 指示詞會控制載入特定驅動程式之服務的方式和時機,以及它可能擁有之基礎(舊版)驅動程式的任何相依性等等。 您也可以選擇性地設定驅動程式的事件記錄服務。
注意
只有在 INF DefaultInstall 區段也使用 INF DefaultInstall 區段時,INF 檔案才會使用 DefaultInstall.Services 區段。 否則,他們會使用 INF DDInstall。服務區段與 INF DDInstall 區段。
DefaultInstall.Services 區段應該具有與其相關 DefaultInstall 區段相同的平臺和操作系統裝飾。 例如, DefaultInstall.ntx86 區段會有對應的 DefaultInstall.ntx86.Services 區段。 如需如何使用系統定義的 .nt、.ntx86、.ntia64、.ntamd64、.ntarm 和 .ntarm64 延伸模組的詳細資訊,請參閱建立多個平臺和操作系統的 INF 檔案。
範例
請參閱針對 INF DDInstall 提供的範例。服務 區段。