OSArch Property

Type: String

OSArch returns information about the type of hardware architecture in use on the visitor's machine. Possible return values include "x86", "x86_64", "ppc", "powerpc", "i386", "mips", and "sparc".

 

Note: You must call the GetExtPropertiesEx method before checking the value of this property. This property requires the Enterprise Edition of BrowserHawk.

 

Example:

<% set bhObj = Server.CreateObject("cyScape.browserObj")

bhObj.SetExtProperties "OSArch"

bhObj.GetExtPropertiesEx

%>

<html>OSArch is:

<%

if bhObj.OSArch = -1 OR bhObj.OSArch = -2 then

PropVal = "Not detectable"

else

Propval = bhObj.OSArch

end if

response.write PropVal

%>

</html>

 

Special notes for this property:

 

See Also:

Additional Steps Required for Java based properties

Detecting Operating System Details

OSName Property

OSVersion Property

Platform Property