Synchroniseur personnalisé (PowerShell)
Cas d'utilisation du synchroniseur personnalisé (PowerShell)
Session simple
# 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 avec identifiants
Champs couramment utilisés
Scénario avancé
Mis à jour
Ce contenu vous a-t-il été utile ?