Custom (PowerShell) synchronizer
Custom (PowerShell) synchronizer use cases
Simple session
# Obtain or generate your list of sessions to create, here we assume a $data table.
# Has been filled by querying an external source.
Foreach($row in $data)
{
# Create a new session, the only mandatory property is 'Name' so we require it as a parameter in the Add method.
$session = $RDM.Add($row.Name)
# Set the other properties using $session.
$session.Host = $row.Name
$session.Description = $row.Description
$session.Group = $row.Group # it can be multiple levels i.e. 'Folder1\Folder1a'
}Session with credentials
Commonly used fields
Advanced scenario
Last updated
Was this helpful?