Skip to main content
Solved

Apple Menu - Shutdown and Restart Missing


Forum|alt.badge.img+7

In the Apple Menu "Shutdown" and "Restart" have dissapeared. We have not changed anything, if i delete /Library/Managed Preferences then it comes back, it would appear the settings do disable the shutdown in apple menu is in com.apple.loginwindo.plist, which we have a configuration profile which includes a loginwindow payload, so i assume there is something JSS is doing with the plist. Anyone have any ideas?

Best answer by mm2270

Have you guys read though the release notes for 9.12? It seems this was a defect that was fixed in that version according to what I saw. its listed as D-005329 on page 15 in the release notes PDF.

View original
Did this topic help you find an answer to your question?

42 replies

Forum|alt.badge.img+1
  • New Contributor
  • 5 replies
  • September 24, 2013

I had this come up yesterday. I had to create Managed Preference to fix the problem and push it to the Macs that have the problem. I also noticed that under the "Go" menu, the "Connect to Server", "Go to Folder" are missing as well.


Forum|alt.badge.img+4
  • Contributor
  • 15 replies
  • September 24, 2013

We are seeing the same on some of our clients after upgrading to version 9.


Forum|alt.badge.img+1
  • New Contributor
  • 5 replies
  • September 24, 2013

Another thing I just noticed. The Eject option is not available from the Finder window or when you right click on a disk!!!

Anybody else having this issue?


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 26, 2013

I am having this same issue right now


Forum|alt.badge.img+3
  • New Contributor
  • 6 replies
  • September 26, 2013

The Finder preference is preventing our group of 3000 machines from showing the network share.


Forum|alt.badge.img+3
  • New Contributor
  • 4 replies
  • September 26, 2013

Shutdown button missing for us as well. Was fine on 9.0 but something in 9.1 got rid of it.


Forum|alt.badge.img+4
  • Contributor
  • 15 replies
  • September 26, 2013

It seems to be getting progressivly worse for us. Started with Shutdown missing from the Apple menu, and then it disappeard from the menu that pops up when using the power button. Now we have to log out to get a Shut Down option. Next the Finder Preferences changed so that Hard Drive, Servers, External drives, and CDs would not show on the Desktop, then the eject commands stopped working. I've found two options for ejecting a disc...
1. Go to System-Library-CoreServices-Menu Extras and double-click Eject.menu to put an eject button in your menu bar.
2. Hold down the trackpad button and/or eject key on a restart to force an eject.


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 26, 2013

How do i get the shutdown and restart buttons back


Forum|alt.badge.img+1
  • New Contributor
  • 5 replies
  • September 26, 2013

I created a Managed Pref in the JSS with changes made in the Finder payload.


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 26, 2013

what is the finder payload that you changed? Im not seeing one that looks like it would change that


Forum|alt.badge.img+1
  • New Contributor
  • 5 replies
  • September 26, 2013

Sorry, not Finder, LogIn Window. Set the Trust to "False", on the Disable Restart Apple Menu Item and the same for Disable Shutdown Apple Menu Item.


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 26, 2013

Thanks


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 26, 2013

it does not work i still have no shutdown or restart


Forum|alt.badge.img+1
  • New Contributor
  • 5 replies
  • September 26, 2013

Yes, it requires a reboot.


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 26, 2013

even after a restart i still have not shutdown.


Forum|alt.badge.img+7
  • Author
  • Contributor
  • 48 replies
  • September 27, 2013

i tried the managed preferences and it didnt work for me either. We have our account manager looking into this for us and we are doing some testing with him. Each release breaks something new, each time we look at the realease notes and get excited about the things that get fixed but seems to be getting worse.


Forum|alt.badge.img+7
  • Contributor
  • 43 replies
  • September 27, 2013

I noticed that it did work it just took multiple reboots


Forum|alt.badge.img+7
  • Author
  • Contributor
  • 48 replies
  • September 27, 2013

this is not an option for us, when we enable user-level managed preferences for some reason it breaks our smbhome mounts at logon.
We shouldnt be need to fix stuff all the time that was working.


Forum|alt.badge.img+7
  • Author
  • Contributor
  • 48 replies
  • October 1, 2013

I can confirm a defect has been submitted by our account manager, it has been said that a fix should be forthcoming soon.


Forum|alt.badge.img+3
  • New Contributor
  • 6 replies
  • October 1, 2013

The way we fixed this was having to recreate the configuration profiles and delete the buggy ones from the machines. We had to remove the login window profile and restrictions. Those 2 profiles affected the way the finder preferences would hide or unhide drives and shares.

So now our new configuration profile is only pushing network settings for one and certificate for another. I did not have any luck trying to unhide the finder preferences using MCX.


Forum|alt.badge.img+7
  • Author
  • Contributor
  • 48 replies
  • October 2, 2013

We have also removed the login window payload, i have captured the settings and put them in a script this is what i have runing as a policy as a run once per computer just to make sure they all have the login window settings we want.

#! /bin/bash

# Set the .GlobalPreferences plist
defaults write /Library/Preferences/.GlobalPreferences MultipleSessionEnabled -bool False
defaults write /Library/Preferences/.GlobalPreferences com.apple.logout.AutoLogOutDelay -int 0

#Set the Login Window Perefences plist
defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText -string "Welcome To <Company/School Name Here>"
defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo -string "HostName"
defaults write /Library/Preferences/com.apple.loginwindow AdminMayDisableMCX -bool False
defaults write /Library/Preferences/com.apple.loginwindow AlwaysShowWorkgroupDialog -bool False
defaults write /Library/Preferences/com.apple.loginwindow CombineUserWorkgroups -bool True
defaults write /Library/Preferences/com.apple.loginwindow DisableConsoleAccess -bool True
defaults write /Library/Preferences/com.apple.loginwindow EnableExternalAccounts -bool True
defaults write /Library/Preferences/com.apple.loginwindow FlattenUserWorkgroups -bool False
defaults write /Library/Preferences/com.apple.loginwindow HideAdminUsers -bool False
defaults write /Library/Preferences/com.apple.loginwindow HideLocalUsers -bool False
defaults write /Library/Preferences/com.apple.loginwindow HideMobileAccounts -bool False
defaults write /Library/Preferences/com.apple.loginwindow IncludeNetworkUser -bool False
defaults write /Library/Preferences/com.apple.loginwindow LocalUserLoginEnabled -bool True
defaults write /Library/Preferences/com.apple.loginwindow LocalUsersHaveWorkgroups -bool False
defaults write /Library/Preferences/com.apple.loginwindow RestartDisabledWhileLoggedIn -bool False
defaults write /Library/Preferences/com.apple.loginwindow RetriesUntilHint -int 0
defaults write /Library/Preferences/com.apple.loginwindow SHOWFULLNAME -bool True
defaults write /Library/Preferences/com.apple.loginwindow SHOWOTHERUSERS_MANAGED -bool True
defaults write /Library/Preferences/com.apple.loginwindow ShutDownDisabled -bool False
defaults write /Library/Preferences/com.apple.loginwindow RestartDisabled -bool False
defaults write /Library/Preferences/com.apple.loginwindow SleepDisabled -bool False
defaults write /Library/Preferences/com.apple.loginwindow ShutDownDisabledWhileLoggedIn -bool False
defaults write /Library/Preferences/com.apple.loginwindow UseComputerNameForComputerRecordName -bool False
defaults write /Library/Preferences/com.apple.loginwindow com.apple.login.mcx.DisableAutoLoginClient -bool True

# Set the Screensaver plist
defaults write /Library/Preferences/com.apple.screensaver loginWindowIdleTime -int 1800
defaults write /Library/Preferences/com.apple.screensaver loginWindowModulePath -string "/System/Library/Screen Savers/FloatingMessage.saver"


easyedc
Forum|alt.badge.img+16
  • Esteemed Contributor
  • 623 replies
  • October 9, 2013

+1 Also saw this issue show up on workstations after upgrading to 9.11. In fact, a number of our config profiles that were pushed via JAMF started acting up once we moved to 9.11. Rebuilding the profiles has helped some, though not others.


mm2270
Forum|alt.badge.img+16
  • Legendary Contributor
  • 7880 replies
  • Answer
  • October 9, 2013

Have you guys read though the release notes for 9.12? It seems this was a defect that was fixed in that version according to what I saw. its listed as D-005329 on page 15 in the release notes PDF.


Forum|alt.badge.img+7
  • Author
  • Contributor
  • 48 replies
  • October 10, 2013

9.12 Update fixes the bug. Thank you JAMF


Forum|alt.badge.img+6

9.12 fixed the problem for us too, but funnily enough I had to reboot my two test machines before the shutdown and restart buttons returned! No complaints from any staff yet though - probably shows how often our staff actually reboot their machines... ha!


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings