A user is experiencing issues with built-in sync and has been advised to run a script to check for duplicate machines in the monitor cache. The script can be found at (https://runsuri.com/).
Read the entire ‘Troubleshooting Built-In Sync Issues: Check for Duplicate Machines in ControlUp Monitor Cache using Script’ thread below:
Anyone having an issue with the built-in sync. I tried adding a new pool and it wouldn’t sync so I removed everything and sync will not create the folders for the folders I selected and there are 100s of VMs in there
Hi @member might be duplicate machines in the monitor cache
Can you run this script on a monitor
$pathToMonitorModule = (Get-ChildItem "C:\Program Files\Smart-X\ControlUpMonitor*ControlUp.PowerShell.Monitor.dll" -Recurse | Sort-Object LastWriteTime -Descending)[0]
Import-Module $pathToMonitorModule
$computers = get-cucomputers
$grouped = $computers | group-object Name
$duplicate = $grouped | where-object {$_.count -ge 2} | out-gridview
If(($duplicate -eq $null) -or ($duplicate -eq ”)){Write-Host "No Duplicates Where Found" -ForegroundColor Yellow}
will let you know if any machine is showing more than once
Continue reading and comment on the thread ‘Troubleshooting Built-In Sync Issues: Check for Duplicate Machines in ControlUp Monitor Cache using Script’. Not a member? Join Here!
Categories: All Archives, ControlUp Edge DX, ControlUp Scripts & Triggers