mirror of
https://github.com/MLBZ521/MacAdmin.git
synced 2026-03-04 01:22:03 +00:00
14 lines
474 B
SQL
14 lines
474 B
SQL
# Queries on Miscellaneous Configurations
|
|
# Most of these should be working, but some may still be a work in progress.
|
|
# These are formatted for readability, just fyi.
|
|
|
|
##################################################
|
|
## Printers
|
|
|
|
# Unused Printers
|
|
select distinct printers.printer_id, printers.display_name
|
|
from printers
|
|
where printers.printer_id not in ( select printer_id from policy_printers );
|
|
|
|
# Another Query to check configuration profiles would likely be useful
|