Last active
October 16, 2025 19:03
-
-
Save smashism/162cacae65fe6e45f6308317de9e9920 to your computer and use it in GitHub Desktop.
Demo base config for Self Service+ menubar app when using Platform SSO created user accounts, including elevation/demotion support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>AutoOpenAppAtLogin</key> | |
| <false/> | |
| <key>Appearance</key> | |
| <dict> | |
| <key>ShowWelcomeWindow</key> | |
| <false/> | |
| </dict> | |
| <key>UserHelp</key> | |
| <dict> | |
| <key>HelpOptions</key> | |
| <string>https://yourhelpdesk.com</string> | |
| <key>HelpType</key> | |
| <string>URL</string> | |
| </dict> | |
| <key>CustomMenuItems</key> | |
| <dict> | |
| <key>GetHelp</key> | |
| <string>Your Help Desk</string> | |
| <key>GetSoftware</key> | |
| <string>Self Service+</string> | |
| </dict> | |
| <key>HiddenMenuItems</key> | |
| <array> | |
| <string>preferences</string> | |
| <string>resetpassword</string> | |
| <string>about</string> | |
| </array> | |
| <key>TemporaryUserPermissions</key> | |
| <dict> | |
| <key>TemporaryUserPromotion</key> | |
| <true/> | |
| <key>URLCommandLineElevation</key> | |
| <true/> | |
| <key>UserPromotionDuration</key> | |
| <integer>5</integer> | |
| <key>UserPromotionTimer</key> | |
| <true/> | |
| <key>UserPromotionReason</key> | |
| <true/> | |
| <key>UserPromotionChoices</key> | |
| <array> | |
| <string>Application install</string> | |
| <string>JNUC 2025</string> | |
| </array> | |
| </dict> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment