Provides information about the NetWare operating system, such as
The name of the distributor.
The version and revision number.
The revision date.
The copyright notice.
Returns the name of the company that distributed the NetWare OS.
object.Company
String.
Read-only.
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"
Returns the copyright notice for the NetWare OS.
object.Copyright
String.
Read-only.
This example returns the copyright notice of the NetWare OS.
set srv = CreateObject ("ucx:Server")
set info = srv.Description
print (info.Copyright)
Returns the revision date of the NetWare OS.
object.Date
String.
Read-only.
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"
Returns the version and revision number for the NetWare OS.
object.Revision
String.
Read-only.
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'