Here is something for those who want to work with WIMGAPI and VB .NET. Just add the module below to your project and use the examples below that to do your tasks. I will be updating it with more functions. If you know any which have not been added yet please post a working example WIMGAPI Module v1.0 The places where you see the number 1, that is the image index. Mount Image If CWIM_MountImage(1,"C:\Wimfile.wim","C:\MountPath") = true then 'DO THIS else 'MSGBOX("There was an error mounting this image") end if UnMount Image If CWIM_UnMountImage(1,"C:\Wimfile.wim","C:\MountPath",True) = true then 'DO THIS else 'MSGBOX("There was an error unmounting this image") end if Delete Image CWIM_DeleteImage("C:\WimFile.wim",1) GetWIMInfo Dim WImInfo = CWIM_GetWimInfo("C:\Wimfile.wim") Capture Image CWIM_CaptureImage("C:\FolderToCapture","C:\NewWim.wim",WIM_COMPRESS_LZX,"C:\Temp") Export Image CWIM_ExportImage("C:\OriginalWim.wim","C:\ExportedWim.wim",1,"C:\Temp")