I have a command in my fixlet to apply ONLY to computers that are NOT part of a domain.
The rest of the fixlet’s commands apply no matter what.
How do I say something like: if {not member of a domain} do this command?
Thank you in advance
I have a command in my fixlet to apply ONLY to computers that are NOT part of a domain.
The rest of the fixlet’s commands apply no matter what.
How do I say something like: if {not member of a domain} do this command?
Thank you in advance
Is the question Windows specific? or also non-Windows?
See these windows examples:
The key is the following:
(windows of operating systems) AND (not exists distinguished names of local computers of active directories)
It is Windows Specific. So if I am extrapolating correctly, I can populate my Action tab with:
// Apply Auditing rules to Non-domain-joined Windows systems
if {not exists distinguished names of local computers of active directories}
Followed by my auditing rules
// next if statement to continue on
Yes, just be sure to also have and endif
after your conditional statements.