Hi! Is there a way to prevent access to the Login Items & Extensions pane under the General settings section on Mac?
Restricting access to the Login Items & Extensions paneSolved
Replies (3)
Marked SolutionPending Review
Participant
10 months ago
Feb 23, 2025
Marked SolutionPending Review
Hello @ryker, it’s not possible to completely disable access to the Login Items & Extensions pane. The best alternative is to manage the login items within the pane for specific applications using a configuration profile
Marked SolutionPending Review
Participant
10 months ago
Feb 25, 2025
Marked SolutionPending Review
Oh, I see! In that case, could someone help me configure login items for Microsoft Word and Mail apps? I’ve tried multiple configurations, but none have worked as expected.
Marked SolutionPending Review
Participant
10 months ago
Feb 26, 2025
Marked SolutionPending Review
Hey @ryker, try the following profile. It will add Microsoft Word and Mail as login items, ensuring they launch automatically each time a user logs in.
TITLE
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
<?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>PayloadContent</key> <array> <dict> <key>AutoLaunchedApplicationDictionary-managed</key> <array> <dict> <key>Path</key> <string>/Applications/Microsoft Word.app</string> <key>Hide</key> <false></false> </dict> <dict> <key>Path</key> <string>/System/Applications/Mail.app</string> <key>Hide</key> <false></false> </dict> </array> <key>PayloadIdentifier</key> <string>com.apple.loginitems.managed.1EE03C59-90B0-4819-B00E-3BEB3C70BCD9</string> <key>PayloadType</key> <string>com.apple.loginitems.managed</string> <key>PayloadUUID</key> <string>1EE03C59-90B0-4819-B00E-3BEB3C70BCD9</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Login Items Managed Items</string> <key>PayloadIdentifier</key> <string>MacBook.05036591-7C98-46A4-8028-C8FC1D528149</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>9F6C8F8C-83CF-4DEC-A1D0-EEE33F711CC7</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
Save