WinInstallerMinVer Property (.NET)

 

Type: String

 

Returns the minimum version of Microsoft's Windows Installer technology installed on the visitor's machine, such as 0, 1.0, 1.1, 1.2, and 2.0. While it is not currently possible to detect the exact version installed, it can be very handy to know what the minimum installed version is.

 

Note: Use of this property requires the Enterprise Edition of BrowserHawk.

 

C# Example:

<html>Minimum version of Windows Installer:

<% BrowserObj browObj = BrowserObj.GetBrowser();

Response.Write(browObj.WinInstallerMinVer);

%>

</html>