9.19 ServerInfo Object

Provides information about the NetWare operating system, such as

9.19.1 Company property

Returns the name of the company that distributed the NetWare OS.

Syntax

object.Company

Type

String.

Attributes

Read-only.

Example

This example returns the name of the company that distributed the NetWare OS.

set srv = CreateObject ("ucx:Server") 
set info = srv.Description 
     print (info.Company) &" distributed the NetWare OS"

9.19.2 Copyright property

Returns the copyright notice for the NetWare OS.

Syntax

object.Copyright

Type

String.

Attributes

Read-only.

Example

This example returns the copyright notice of the NetWare OS.

set srv = CreateObject ("ucx:Server") 
set info = srv.Description 
     print (info.Copyright)

9.19.3 Date property

Returns the revision date of the NetWare OS.

Syntax

object.Date

Type

String.

Attributes

Read-only.

Example

This example returns the revision date of the NetWare OS.

set srv = CreateObject ("ucx:Server") 
set info = srv.Description 
     print (info.Date) &" is the revision date of the NetWare OS"

9.19.4 Revision property

Returns the version and revision number for the NetWare OS.

Syntax

object.Revision

Type

String.

Attributes

Read-only.

Example

This example returns the version and revision number for the NetWare OS.

set srv = CreateObject ("ucx:Server") 
set info = srv.Description 
     print (info.Revision) &' is the version of the NetWare OS'