Pulling Rsop Values

(imported topic written by zDwinger91)

I am new to creating bigfix analysis and need to pull the passwordcomplexity value from RSOP.

I have tried using and have had no luck filtering the output

select objects ("* from RSOP_PolicySetting") of rsop computer wmis

and the same goes for

selects("* from RSOP_PolicySetting") of rsop computer wmis

Not sure where I’m getting bogged down but with the objects I can’t figure out where the actual properties would be.

Thanks for the help and insight.

(imported comment written by BenKus)

Hi zDwinger,

You can try this:

(if (it = “Setting=True”) then (“PasswordComplexityEnabled: True”) else (“PasswordComplexityEnabled: False”)) of ((selects(“setting from RSOP_SecuritySettingboolean WHERE keyname=‘PasswordComplexity’ and precedence=1”) of rsop computer wmis) as string) whose (it starts with “Setting=”)

WARNING: This can run very slowly so be careful… if you make this a property, you should set it to run very infrequently.