Skip to main content
Version: Next

Is Windows

Is Windows -> Function result

ParameterTypeDescription
Function resultBoolean🡐True if operating system = Windows, else False

Description

The Is Windows command returns True if the current operating system is Windows.

Example

You want to determine if the current operating system is Windows:

 If(Is Windows)
    ALERT("It's Windows")
 Else
    ALERT("It's not Windows")
 End if

See also

Get system info
Is macOS