Citrix Access Control Administration — Question 126
Scenario: A Citrix Administrator changed all contractor user IDs to begin with the prefix ‘con-‘. Currently, SmartControl is used to restrict all contractor user access to peripherals.
Which syntax can the administrator use to find only the adjusted contractor names and continue to restrict access to peripherals?
Answer options
- A. USER.IS_MEMBER_OF(“con-”)
- B. USER.NAME.STARTSWITH(“con-”)
- C. USER.NAME.CONTAINS(“con-”)
- D. USER.ATTRIBUTE(“con-“)
Correct answer: B
Explanation
The correct answer is B because USER.NAME.STARTSWITH(“con-”) effectively filters and identifies usernames that begin with the specified prefix. Options A and C are incorrect as they either check for group membership or look for the substring anywhere in the name, rather than at the start. Option D is also incorrect as USER.ATTRIBUTE(“con-”) does not specifically address the username prefix requirement.