├── .gitignore ├── Configuration Profiles ├── Example_BackgroundServiceManagement.mobileconfig ├── Example_DockToggleTimeout.mobileconfig └── Example_PrivilegesDemoter3.mobileconfig ├── Demote Admin Privileges.sh ├── JSON Schema - PrivilegesDemoter-3.0.json ├── LICENSE ├── README.md ├── Screenshots ├── IBMNotifier-HelpBtn-Dark.png ├── IBMNotifier-HelpBtn-Light.png ├── JamfHelper-Dark.png ├── JamfHelper-Light.png ├── README.md ├── SwiftDialog-HelpBtn-Dark.png ├── SwiftDialog-HelpInfo-Dark.png ├── SwiftDialog-HelpLink-Light.png └── SwiftDialog-Light.png ├── Uninstall PrivilegesDemoter.sh └── pkg ├── PrivilegesDemoter.sh ├── blog.mostlymac.PrivilegesDemoter.conf ├── blog.mostlymac.demoteonlogin.plist ├── blog.mostlymac.privileges.check.plist ├── icon.png ├── postinstall.sh ├── preinstall_SAPPrivileges.sh ├── preinstall_SAPPrivileges_SwiftDialog.sh ├── preinstall_Standalone.sh └── preinstall_Standalone_SwiftDialog.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/.gitignore -------------------------------------------------------------------------------- /Configuration Profiles/Example_BackgroundServiceManagement.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Configuration Profiles/Example_BackgroundServiceManagement.mobileconfig -------------------------------------------------------------------------------- /Configuration Profiles/Example_DockToggleTimeout.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Configuration Profiles/Example_DockToggleTimeout.mobileconfig -------------------------------------------------------------------------------- /Configuration Profiles/Example_PrivilegesDemoter3.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Configuration Profiles/Example_PrivilegesDemoter3.mobileconfig -------------------------------------------------------------------------------- /Demote Admin Privileges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Demote Admin Privileges.sh -------------------------------------------------------------------------------- /JSON Schema - PrivilegesDemoter-3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/JSON Schema - PrivilegesDemoter-3.0.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/IBMNotifier-HelpBtn-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/IBMNotifier-HelpBtn-Dark.png -------------------------------------------------------------------------------- /Screenshots/IBMNotifier-HelpBtn-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/IBMNotifier-HelpBtn-Light.png -------------------------------------------------------------------------------- /Screenshots/JamfHelper-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/JamfHelper-Dark.png -------------------------------------------------------------------------------- /Screenshots/JamfHelper-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/JamfHelper-Light.png -------------------------------------------------------------------------------- /Screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/README.md -------------------------------------------------------------------------------- /Screenshots/SwiftDialog-HelpBtn-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/SwiftDialog-HelpBtn-Dark.png -------------------------------------------------------------------------------- /Screenshots/SwiftDialog-HelpInfo-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/SwiftDialog-HelpInfo-Dark.png -------------------------------------------------------------------------------- /Screenshots/SwiftDialog-HelpLink-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/SwiftDialog-HelpLink-Light.png -------------------------------------------------------------------------------- /Screenshots/SwiftDialog-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Screenshots/SwiftDialog-Light.png -------------------------------------------------------------------------------- /Uninstall PrivilegesDemoter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/Uninstall PrivilegesDemoter.sh -------------------------------------------------------------------------------- /pkg/PrivilegesDemoter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/PrivilegesDemoter.sh -------------------------------------------------------------------------------- /pkg/blog.mostlymac.PrivilegesDemoter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/blog.mostlymac.PrivilegesDemoter.conf -------------------------------------------------------------------------------- /pkg/blog.mostlymac.demoteonlogin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/blog.mostlymac.demoteonlogin.plist -------------------------------------------------------------------------------- /pkg/blog.mostlymac.privileges.check.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/blog.mostlymac.privileges.check.plist -------------------------------------------------------------------------------- /pkg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/icon.png -------------------------------------------------------------------------------- /pkg/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/postinstall.sh -------------------------------------------------------------------------------- /pkg/preinstall_SAPPrivileges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/preinstall_SAPPrivileges.sh -------------------------------------------------------------------------------- /pkg/preinstall_SAPPrivileges_SwiftDialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/preinstall_SAPPrivileges_SwiftDialog.sh -------------------------------------------------------------------------------- /pkg/preinstall_Standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/preinstall_Standalone.sh -------------------------------------------------------------------------------- /pkg/preinstall_Standalone_SwiftDialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgmills/PrivilegesDemoter/HEAD/pkg/preinstall_Standalone_SwiftDialog.sh --------------------------------------------------------------------------------