Default printer analysis

I used that fixlet
(if property “Default” of it as string contains “True” then string value of property “Name” of it as string else nothing) of select objects (“Name, Default from win32_Printer”) of wmi
For check the client’s default printer name
I need the results of a local fixlet debugger evaluator.
But, BigFix shows local client evaluator results.
Please let me know, Default printer analysis.

Thank you.

If you are looking just for the default printer information, try this:

concatenation ", " of (unique values whose(it as string does not contain “Microsoft” AND it as string does not contain “PDF” AND it as string as lowercase does not contain “fax” AND it as string does not contain “OneNote” AND it as string does not contain “PaperPort”) of preceding texts of firsts “,” of ((values “Device” of keys “windows” whose ( exists values “Device” of it ) of keys “Software\Microsoft\Windows NT\CurrentVersion” of keys of key “HKEY_USERS” of registry) as string) as string)

This relevance brought to you by @jgstew at the following link:
https://bigfix.me/analysis/details/2994742

substring after “Name =” of ( (select objects (“Name, Default from win32_Printer”) of wmi as string ) whose (it as lowercase as string contains “default = true”))