You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
The guest home folder is detected with: ls /Users/ 2>&1 | grep -c Guest
This can result in misdetection if a local user account is contains "Guest". For example if you create user accounts with the name "Kiosk Guest Account" or "Guest Campus".
These are not Guest accounts in a strict sense. Therefore the should not be counted as a detection. To fix this, replace the line with ls /Users/ 2>&1 | grep -cx Guest
This will ensure a whole line matching and solve the issue.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The guest home folder is detected with:
ls /Users/ 2>&1 | grep -c Guest
This can result in misdetection if a local user account is contains "Guest". For example if you create user accounts with the name "Kiosk Guest Account" or "Guest Campus".
These are not Guest accounts in a strict sense. Therefore the should not be counted as a detection. To fix this, replace the line with
ls /Users/ 2>&1 | grep -cx Guest
This will ensure a whole line matching and solve the issue.
The text was updated successfully, but these errors were encountered: