The following example accesses and updates the configuration of the XIA Automation Server.


# Get the current system configuration.

$configuration = $administration.GET_SystemConfiguration();


# Modify the configuration.

$configuration.UserInterface.Title = "New Company Name";


# Update the configuration.

$administration.SET_SystemConfiguration($configuration);