DriverSetupInstallFromZipFile Method (IWin32Window, ZipFile) |
Installs Arsenal Image Mounter driver components from a zip archive.
This routine automatically selects the correct driver version for
current version of Windows.
Namespace:
Arsenal.ImageMounter
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public static void InstallFromZipFile(
IWin32Window ownerWindow,
ZipFile zipFile
)
Public Shared Sub InstallFromZipFile (
ownerWindow As IWin32Window,
zipFile As ZipFile
)
public:
static void InstallFromZipFile(
IWin32Window^ ownerWindow,
ZipFile^ zipFile
)
static member InstallFromZipFile :
ownerWindow : IWin32Window *
zipFile : ZipFile -> unit
Parameters
- ownerWindow
- Type: System.Windows.FormsIWin32Window
This needs to be a valid handle to a Win32
window that will be parent to dialog boxes etc shown by setup API. In
console Applications, you could call
NativeFileIO.Win32API.GetConsoleWindow() to get a window handle to the
console window. - zipFile
- Type: ZipFile
An Ionic.Zip.ZipFile opened for reading that
contains setup source files. Directory layout in zip file needs to be
like in DriverSetup.zip found in DriverSetup directory in repository,
that is, one subdirectory for each kernel version followed by one
subdirectory for each architecture.
See Also