The following code displays how to determine the valid system managed relationship types supported by the system.



Code Sample


# Get the valid system managed relationship types.

$relationshipTypes = $xia.GET_ValidSystemRelationshipTypes();

foreach ($relationshipType in $relationshipTypes)

{

    Write-Host $relationshipType;

}