 Rank: Newbie Joined: 11/28/2015(UTC) Posts: 6  Thanks: 2 times
|
Hi! I'd like to re-organize our SC portal. Right now I have the following structure: Quote:- Internal Infrastructure - Internal Hyper-V Servers - Clients (Group) - Client 1 - Client 2 - Client 3 What I am looking for is the following structure, if it's even possible. I am no expert with the group expressions so this may be an easy thing and hopefully someone can point me in the right direction, or maybe it's not possible, but here's what I'd like: Quote:- Internal Infrastructure - Internal Hyper-V Servers - Clients (Group) - Client 1 (Group) Then obviously, all devices that show a non server OS installed would be under Workstations, and then Server OS would be under servers. Is it possible to have this kind of.. nested grouping? Is that the correct term. Currently, we're using the 'Organization' field on a session to populate the 'Client 1', 'Client 2' names which gives us the grouping. Would it be possible to achieve the layout I'm looking for? Thanks in advance for any and all help you may be able to provide!
|
|
|
|
 Rank: Administration Medals:  Joined: 3/28/2014(UTC) Posts: 2,862  Thanks: 3 times Was thanked: 351 time(s) in 303 post(s)
|
So, it's not exactly the prettiest filter or expression but I think it's pretty close to what you're looking for. It achieves 'nested' subgroups without really nesting them, however. Basically, I have created a group where the Session Filter is set to only display any session with a populated CustomProperty1 (ootb Organization). This group then uses a specifically formatted Subgroup Expression to filter based upon the CustomProperty1 value and the GuestOperatingSystemName. The Session Filter looks like: The Subgroup Expression looks like: Code:
CustomProperty1 + ' - ' + IIF(LEN(CustomProperty1) > 0, IIF(GuestOperatingSystemName LIKE '*' + 'server' + '*', 'Servers', 'Workstations'), CustomProperty1)
In my testing I had 3 sessions, one with CustomProperty1 set to Acme and 2 with it set to Umbrella; one of the Umbrella sessions was a server. When selecting the group it expanded to display a of Organization - Workstations/Servers subgroups sorted in lexicographical order.  Edited by user Monday, March 20, 2017 2:13:24 PM(UTC)
| Reason: Not specified |
ScreenConnect Team |
 1 user thanked Scott for this useful post.
|
|
|
 Rank: Advanced Member Medals:  Joined: 3/8/2014(UTC) Posts: 63  Location: GTA Thanks: 15 times Was thanked: 10 time(s) in 8 post(s)
|
Here is ours. We essentially removed ALL of our customer-level session groups and created one for the root level
Session Group name: By Company
Sublevel 1 - CustomProperty1 is defined as the Organization (default) Sublevel 2 - CustomProperty2 is defined as the Location/Site, e.g. branch office, franchise, home Sublevel 3 - GuestOperationSystemName, grouped as Server, Mac, Windows
CustomProperty1,CustomProperty2,IIF (GuestOperatingSystemName LIKE '*Server*', '-- Servers', IIF (GuestOperatingSystemName LIKE '*Mac*', '-- Mac', IIF (GuestOperatingSystemName LIKE '*Windows*', '-- Windows', '-- Other')))
|
 2 users thanked cdandrea for this useful post.
|
|
|
 Rank: Newbie Joined: 11/28/2015(UTC) Posts: 6  Thanks: 2 times
|
Thank you both - I'm going to test these tonight and see what I can do. Appreciate the input.
|
|
|
|
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.