 Rank: Guest Joined: 9/12/2018(UTC) Posts: 2  Location: Dallas, TX
|
I'm trying to figure out if there's any way to run automated audits, specifically device count, that could be filtered by some property.
Any ideas?
|
|
|
|
 Rank: Advanced Member Medals:  Joined: 11/11/2010(UTC) Posts: 75 Location: Detroit, MI
Thanks: 4 times Was thanked: 7 time(s) in 6 post(s)
|
Originally Posted by: JorgeP  I'm trying to figure out if there's any way to run automated audits, specifically device count, that could be filtered by some property.
Any ideas? Can you explain more? What are you trying to gleen?
|
|
|
|
 Rank: Guest Joined: 9/12/2018(UTC) Posts: 2  Location: Dallas, TX
|
I'm trying to see if I can do a simple count of the total amount of computers I have under specific session groups automatically on a daily basis.
|
|
|
|
 Rank: Administration Medals:  Joined: 3/28/2014(UTC) Posts: 2,862  Thanks: 3 times Was thanked: 351 time(s) in 303 post(s)
|
You can do this with the Report Manager extension and another utility to make the actual request every day. The Report Manager really just exposes the Reporting API in an easier to use manner. For example, if I wanted to gather a list of every session with CustomProperty2 set to 'Acme', I would use the Report Manager to create a URL similar to: Code:
https://myinstance.screenconnect.com/Report.csv?ReportType=Session&SelectFields=Name&SelectFields=CustomProperty1&SelectFields=CustomProperty2&SelectFields=HostDurationSeconds&SelectFields=GuestDurationSeconds&Filter=CustomProperty2%20LIKE%20'Acme'&ItemLimit=10000
Invoking that URL via a browser downloads a CSV with the relevant data. You can also curl/wget/invoke webrequest/whatever to get the same data. You can find more information on the Report Manager Extension on our KB, specifically here. |
ScreenConnect Team |
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.