DismGetImageInfo 函式
傳回 DismImageInfo 結構的陣列,描述 .wim 或 .vhd 檔案中的影像。
語法
HRESULT WINAPI DismGetImageInfo(
_In_ PCWSTR ImageFilePath,
_Out_ DismImageInfo **ImageInfo,
_Out_ UINT *Count
);
參數
ImageFilePath [in]
.wim 或 .vhd 檔案的相對或絕對路徑。
ImageInfo [out]
DismImageInfo結構陣列之位址的指標。
計數 [out]
傳回的 DismImageInfo 結構數目。
傳回值
傳回成功 時S_OK 。
備註
DismImageInfo結構的陣列是由堆積上的 DISM API 所配置。
重要
您必須呼叫 DismDelete,傳遞 ImageInfo 指標,以釋放與 DismImageInfo 結構相關聯的資源。
範例
HRESULT hr = S_OK;
UINT* ImageInfoCount;
hr = DismGetImageInfo(L"C:\\Images\\Image1.vhd", &ImageInfo, &ImageInfoCount);
規格需求
需求 | 描述 |
---|---|
.wim 映射支援的主機平臺 | DISM API 可用於 Windows 評定與部署套件所支援的任何作業系統, (Windows ADK) 。 如需詳細資訊,請參閱 Windows ADK 技術參考。 |
.vhd 映射支援的主機平臺 | Windows 7、Windows Server 2008 R2、Windows 8、Windows Server 2012、Windows 8.1、Windows Server 2012 R2、Windows 10、Windows Server 2016 |
支援的映射平臺 | 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 |