This function is used in Python Scripting.

Description

Returns a dataset of information about each installed module. Each row represents a single module. 

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax

system.util.getModules()

  • Parameters

Nothing

  • Returns

Dataset - A dataset, where each row represents a module. Contains five columns: Id, Name, Version, State (Running, Faulted, etc), and its current License Status (Trial, Activated, etc.)

  • Scope

Gateway

Code Examples
#Return the names of all installed modules
 
results = system.util.getModules()
for row in range(results.rowCount):
	names = results.getValueAt(row, "Name")
	print names
Keywords

system util getModules, util.getModules