DismDisableFeature 函式
停用目前映射中的功能。
語法
HRESULT WINAPI DismDisableFeature(
_In_ DismSession Session,
_In_ PCWSTR FeatureName,
_In_opt_ PCWSTR PackageName,
_In_ BOOL RemovePayload,
_In_opt_ HANDLE CancelEvent,
_In_opt_ DISM_PROGRESS_CALLBACK Progress,
_In_opt_ PVOID UserData
);
參數
會話 [in]
有效的 DismSession。 DismSession 必須與映射相關聯。 您可以使用 DismOpenSession將會話與映射產生關聯。
FeatureName [in]
您想要停用的功能名稱。 若要停用多個功能,請使用分號分隔每個功能名稱。
PackageName [in, optional]
選擇性。 功能所屬之父封裝的名稱。 如果未指定套件,則會使用預設的 Windows Foundation 套件。
RemovePayload [in]
從 Windows 8.1 和 Windows Server 2012 R2 開始,不支援此參數。
Windows 8和Windows Server 2012:
布林值,指定是否要移除啟用此功能所需的檔案。
值 | 描述 |
---|---|
true | 檔案已移除。 |
false | 檔案不會移除。 |
CancelEvent [in, optional]
選擇性。 您可以設定此函式的 CancelEvent ,以便在用戶端發出訊號時取消進行中的作業。 如果在無法取消作業的階段收到 CancelEvent ,作業將會繼續並傳回成功碼。 如果收到 CancelEvent 且作業已取消,映射狀態為未知。 您應該先確認映射狀態,再繼續或捨棄變更,然後再開始一次。
進度 [in, 選擇性]
選擇性。 用戶端定義 DismProgressCallback的指標。
UserData [in, optional]
選擇性。 使用者定義的自訂資料。
傳回值
成功時會傳回 S_OK
。
範例
HRESULT hr = S_OK;
hr = DismDisableFeature(Session, "WindowsMediaPlayer", NULL, FALSE, NULL, NULL, NULL);
規格需求
需求 | 描述 |
---|---|
支援的主機平臺 | DISM API 可用於 Windows 評定與部署套件所支援的任何作業系統, (Windows ADK) 。 如需詳細資訊,請參閱 Windows ADK 技術參考。 |
支援的映射平臺 | Windows 7、Windows Server 2008 R2、Windows PE 3.0、Windows 8、Windows Server 2012、Windows 預先安裝環境 (Windows PE) 4.0、Windows 8.1、Windows Server 2012 R2、Windows 10、Windows Server 2016 |
最低支援的用戶端 | Windows 7 [僅限傳統型應用程式] |
最低支援的伺服器 | Windows Server 2008 R2 [僅限傳統型應用程式] |
標頭 | DismAPI.h |
程式庫 | DismAPI.lib |
DLL | DismAPI.dll |