PowerShell samples - creating folder structure from CSV file
Sample
$csv = Import-Csv "c:\YourFolder\GroupFolder.csv"
foreach ($csvEntry in $csv) {
$groupName = $csvEntry.Name
# Extract the group folder name
if ($groupName.Contains("\")) {
$groupName = $groupName.Substring($groupName.LastIndexOf("\"), $groupName.Length - $groupName.LastIndexOf("\"))
$groupName = $groupName.TrimStart("\")
}
# Create the group folder if it is not null, empty or fill in with space characters
if (![]::IsNullOrWhiteSpace($groupName)) {
$session = New-RDMSession -Type "Group" -Name $groupName
$session.Group = $csvEntry.Name
Set-RDMSession $session
Write-Host "Group Folder $groupName created" -f Yellow
}
}
Update-RDMUINotes

PreviousExtract TeamViewer IDNextRemote Desktop Manager macOS – Enable integrated authentication with Kerberos
Last updated
Was this helpful?