|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
Parameters
None.
Return value
| Information string about the operating system. |
Description
Returns an information string about the operating system.
Can be one of the following values:
| WIN95 | Windows 95 | | WIN98 | Windows 98 | | NT4 | Windows NT 4 | | NT2000 | Windows 2000 | | WINME | Windows ME | | WINXP | Windows XP, Windows XP Media Center, Windows XP Tablet PC, WIndows XP Starter Edition | | WINXPSERVER | Windows Server 2003 | | VISTA | Windows Vista (all editions) |
| UNKNOWN | Unknown version of Windows. |
See also: {link:SYSTEM_PLATEFORM} |
MioScript Sample Code
&OS=system.os()
if(&OS <> "WINXP" && &OS <> "WINXPSERVER")
alert("You are not running Win XP")
if.end |
|
|
|