How to add your knowledge

osName()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1
    4. 4. Example 2

    Synopsis

    Returns the Operating System descriptive string.

    Syntax

    osName ( ) As String 

    Example 1

    OS information

    Intent >osName()
    --> "Microsoft Windows NT 6.1.7600.0" 

    Example 2

    OS information

    Intent >"Running on " & osName() & " Version " & osMajorVersion() & "." & osMinorVersion()
    --> "Running on Microsoft Windows NT 6.1.7600.0 Version 6.1"