Comments
-
Nice post! I am getting stuck on the options for status. From what I can see is the following Status ID Status Text 1 Used 2 Available 4 Reserved Is there any other status? Like should there be status ID 3? Thanks, Dusting
-
Tom, Since we will be restarting the service it affect production systems so we will have to do this early in the morning. Also, we created a case #819907 since we will be sending logs and would rather avoid posting to the message board. Thanks, Dustin
-
Does anyone know if this capability exists now? Thanks, Dustin
-
Michael, This is good stuff. I grabbed what you have from codeplex but wondering if you had a newer version? Thanks! Dustin
-
Madhavan, At the very bottom of the script(CRUD.AddWMINode.ps1) I added the pollers you specified but still not seeing disk utilization. Is there more I need to add? #pollers for volumes mapped to the nodes AddPoller("V.Details.WMI.Windows"); AddPoller("V.Statistics.WMI.Windows"); AddPoller("V.Status.WMI.Windows"); Thanks…
-
Both with same account. I am getting data but it is just repeated 50x.....
-
tdanner Any info on an API for discovering and adding interfaces on WMI nodes?
-
Madhavan, Thanks for the response. Most of the monitoring appears to work such as machine type, Node Status, CPU Load and Memory utilization. I am having issues adding disk utilization. Is there a poller that is suppose to be for disk volumes? Thanks again! Dustin
-
Bman6074, If you take my snippet above you can change the $uris line to $uris | ForEach-Object { Set-SwisObject $swis $_ @{Status=9;Unmanaged=$true;UnmanageFrom=[DateTime]::UtcNow;UnmanageUntil=[DateTime]::UtcNow.AddMinutes(10)}} Hope that helps!
-
dbsmith, This snippet of code is derived from https://thwack.solarwinds.com/message/224972#224972 #Region PSSnapin presence check/addif (!(Get-PSSnapin -Name "SwisSnapin" -ErrorAction SilentlyContinue)){ Add-PSSnapin SwisSnapin -ErrorAction SilentlyContinue}#EndRegion$serverlist = Get-Content -Path…
-
Muralikvp, Your query displayed the desired results. Interestingly enough, my query would work with Orion (v2) but not Orion (v3). Thanks for the help! Dustin
-
When I assign my query to the array objSwisData = Get-SwisData -SwisConnection $swis -Query "SELECT IPAddress, DnsBackward, DhcpClientName FROM IPAM.IPNode I Where Status=2 AND (I.Subnet.DisplayName = 'SUBNET1' OR I.Subnet.DisplayName = 'SUBNET2')" The array/object gets a Type name of PscxDynamicType0 and 3 properties that…
-
Does anyone know if this is on the radar? It seems to be a huge win for anyone wanting to automate their new builds.
-
Is this now fixed with IPAM API · solarwinds/OrionSDK Wiki · GitHub ? If so, we are running IPAM 4.5.0 and still getting access denied while running Set-SwisObject $swis -Uri 'swis://localhost/Orion/IPAM.IPNode/IpNodeId=2' -Properties @{ Alias = 'test1' } but when running Get-SwisObject $swis -Uri…
-
Maybe a better way to ask this question is how are people automating the "choose resources" step? When I manually add a server the second step(choose resources) has default items checked but when I use the CRUD.AddWMINode.ps1 the resource are not monitored. The screenshot below shows how to choose resources when manually…