Announcment for all users
Hi,
I am just wondering what should I do so all my end users can see Announcement in the Cireson Portal.
When I create announcement for access group I have option to choose Domain Users and all support groups.
If I choose any of the support groups Like SCSM-Analysts every member of that group will see the announcement.
However if I chose Domain Users nobody can see anything. I guess it is no surprise since there is no members when I run this script.
SELECT U.UserName FROM CI$User U
INNER JOIN GroupMembership_CI$DomainGroup_CI$User GM ON GM.UserId = U.Id
INNER JOIN CI$DomainGroup DG ON GM.DomainGroupId = DG.Id
WHERE DG.UserName = 'Domain Users'
We have 3 AD connectors. One is connected to OU where all users objects are stored
Second connector to OU where all SCSM support groups are and
Third connector is just to select individual object “Domain Users”. That was done by our consulting who was here. I guess that was requirement for portal.
So how can I target all users?
Best Answer
-
Joe_Burrows Cireson Devops Super IT Monkey ✭✭✭✭✭Domain users will work once its enumerated in the cache, groups are only enumerated in the cache if its targeted to one of the below settings:- Mapped within Support Group Mappings- Already in use in a current role: Analysts, KnolwedgeManager, AssetManager, LocalizationManager- A Security Group- A specified Team Group- A specified Group Form- Announcement Group
So target domain users to one of the above settings, then restart your cachebuilder, then run your query and you will get results and announcements will appear.
Check out the FAQ I posted here:
https://community.cireson.com/discussion/160/portal-tip-managing-portal-annoucements5
Answers
Cireson, had the article about Authenticated users so I guess that was the reason we have to use domain users. I am just wondering what do so that all users can see announcements.
So target domain users to one of the above settings, then restart your cachebuilder, then run your query and you will get results and announcements will appear.
Check out the FAQ I posted here:
https://community.cireson.com/discussion/160/portal-tip-managing-portal-annoucements
Thanks Joe