ContributionsMost RecentMost LikesSolutionsRe: Logic.Monitor (PowerShell) module Has anyone had any luck scripting moving bulk devices from Collector A to Collector B? The device may or may not be in an Autobalanced group: Set-LMDevice -Id 89073 -Properties @{'currentCollectorId'=454;} I even tried: Set-LMDevice -Id 89073 -PreferredCollectorGroupId 150 -PreferredCollectorId 454 -Properties @{'currentCollectorId'=454;} Re: Logic.Monitor (PowerShell) module Hi, I am stringing together a few of your commands to setup Collectors, Resources, Dashboards etc so things are setup consistently. Do you have any plans for: “Creating ReportGroup”? (Would be pretty similar to: New-LMDashboardGroup) I see Get-LMReportGroup.ps1 but not a new-LMReportGroup yet. Re: Logic.Monitor (PowerShell) module @Steve Villardi Thank you so much for this Powershell. I have been working with a few things for a while and this has speed up my work day. One question, for you or my peers. Does anyone know how we can REMOVE a property from a device? # Set a property Set-LMDevice -Id 123 -Properties @{'snmp.community'='public';} If I can set a property, then I can bulk remove.
Top ContributionsRe: Logic.Monitor (PowerShell) moduleRe: Logic.Monitor (PowerShell) moduleRe: Logic.Monitor (PowerShell) module