Password lock only when lid closed

I'm reviving an old thread here to see if this is possible in Lion before I upgrade. Here is the original question from Haiiyaa as he stated it most succinctly:
Hi,
I have a MacBook. I am trying to find a way so that the computer prompts me for a password only when i close the lid . Not everytime the monitor goes into screensaver or sleep mode. I have looked for a solution for this all over the web, and it just doesn't seem possible. I am surprised that is the case. Isn't it a little annoying that you have to log in everytime the computer screensaver comes on?
Especially when I am in battery mode, the laptop goes into sleep mode very quickly. I don't want to log in everytime i need to use the laptop.
Thanks
Here are the two threads which covered it in 10.6. The answer was that this can't be done.
https://discussions.apple.com/thread/2133777?start=0&tstart=0
https://discussions.apple.com/message/10075887#10075887
Anyone have any new ideas?
Thanks,
M

Hi Matthew,
I'm sorry to say I have no answer, but I'm also searching a solution. Even though it seems to be poorly understood by most people, and appears relatively minor on the surface, I see it as a huge gaping security hole.
Take for example the following:
During the evening, I'm at home, around, making dinner and occasionally using my computer. It's open, on my desk, and is secure by the sheer virtue of there being nobody with access to it at that time. It may be hours between uses, but I don't ever want to be bothered for my password.
But, the moment I step out of the flat, or at a coffee shop, or if my bag is stolen, or when only my roommates are home, I want that thing to be locked. And I want that lock to be really, really easy to engage, in which I think that closing the lid is the simplest, quickest, and most visibe at a glance. No menus, hotkeys, dialogues, delays, etc..
So in summary, we want the same behaviour, which was really freaking easy in 10.5.x, and has been unceremoniously yanked out from our favourite os.
Booo!! Hisss!!

Similar Messages

  • Password lock only when lid is closed.

    Hi,
    I have a MacBook. I am trying to find a way so that the computer prompts me for a password only when i close the lid . Not everytime the monitor goes into screensaver or sleep mode. I have looked for a solution for this all over the web, and it just doesn't seem possible. I am surprised that is the case. Isn't it a little annoying that you have to log in everytime the computer screensaver comes on?
    Especially when I am in battery mode, the laptop goes into sleep mode very quickly. I don't want to log in everytime i need to use the laptop.
    Thanks

    AAPL - can you explain what those settings are? As Haiyaa states, the Security preferences do not seem to be able to handle that situation.
    In that preference pane, in the General Tab, the only pertinent option is "Require password [option menu] after sleep or screen saver begins." If you check that box, it requires a password when either waking from sleep or when the screen saver appears. Also, most annoyingly, if you have the setting for the monitor to sleep, which isn't the same things as either actual sleep or the screen saver, and it's getting annoying that I'm trying to save power and must type in my password, even though I'm also in a school setting and need a password protection for when I put it to sleep.
    In any case, if the box is unchecked, then it doesn't require a password for either sleep OR for the screen saver (or for the monitor sleep).
    So if you could shed light on what your settings are that allows you to only enter a password when waking from sleep, it would be much appreciated.

  • Fan still going when lid closed.

    I bought the MacBook Pro about 3 years ago. Never had problems with the fan until now.
    Normally, I never do anything major on the MacBook, just browsing and editing photos. So the fan hardly gets used during me using it. But the weirdest thing happened lately when the fan start going when the lid is closed in sleep mode, and it really heats up hot at the bottom. This is with just Photoshop open and Internet. Nothing else running, plus the lid is closed. How is that possible? It don't even do that when I am using the MacBook, so how can it be when I am not.
    I also hear notification sounds when lid closed, which means it is not fully in sleep. I have rest PRM but still no good. Any ideas please? thanks guys!

    thanks, but it stopped for about a week, and it's doing it again. Today I left it for about an hour lid closed, came back to it, it was burning hot, couldn't even put my hands on the bottom why is it doing this?

  • Lock computer only when computer closed

    Hi,
    I have a MacBook. I am trying to find a where the computer prompts me for a password only when i close the computer (not shutdown, but close the lid). Not everytime the monitor goes into screensaver or sleep mode. Is this possible?
    Thanks

    I believe that closing the lid forces the computer into the sleep mode.
    Use a wake from sleep password, but turn off the normal sleep mode.
    Message was edited by: nerowolfe

  • Suspends only every second time when lid closed

    Hello everybody, my problem is as the  subject: to suspend I have to close usually the laptop lid twice.
    I'm using kde, but I have also used years ago fluxbox, tweaking scripts and using laptop-mode (which is not running now). Thanks in advance for every idea where to look.
    /etc/acpi$ cat handler.sh
    #!/bin/sh
    # Default acpi script that takes an entry for all actions
    minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`
    maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`
    setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
    set $*
    case "$1" in
    button/power)
    case "$2" in
    PBTN|PWRF)
    logger "PowerButton pressed: $2"
    poweroff
    logger "ACPI action undefined: $2"
    esac
    button/sleep)
    case "$2" in
    SLPB|SBTN)
    echo -n mem >/sys/power/state
    logger "ACPI action undefined: $2"
    esac
    ac_adapter)
    case "$2" in
    AC|ACAD|ADP0)
    case "$4" in
    00000000)
    echo -n $minspeed >$setspeed
    #/etc/laptop-mode/laptop-mode start
    00000001)
    echo -n $maxspeed >$setspeed
    #/etc/laptop-mode/laptop-mode stop
    esac
    logger "ACPI action undefined: $2"
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000)
    logger 'Battery online'
    00000001)
    logger 'Battery offline'
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    open)
    logger 'LID opened'
    logger "ACPI action undefined: $3"
    esac
    logger "ACPI group/action undefined: $1 / $2"
    esac
    # vim:set ts=4 sw=4 ft=sh et:

    I actually do not understand who comands at the end - this handler.sh or the settings in Kde-powermanaging, I guess it's the second, I did remove the actions for suspend on lid close time ago. I made a test now, when I change handler.sh and check "do nothing when lid close" in kde powersettings happens exact the same: performs suspend every second time only.
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    /usr/sbin/pm-suspend
    open)
    logger 'LID opened'
    logger "ACPI action undefined: $3"
    esac
    Last edited by steff (2012-07-21 17:08:46)

  • Lock button on.  iPad won't lock when lid closed

    Lock button is on but iPad will not shut off and lock when lid closes

    Maybe the magnets on the lid are askew?
    This read may provide insight: http://www.ifixit.com/Teardown/iPad+2+Smart+Cover+Teardown/5089

  • MacBook Pro does not sleep when lid closed

    Hi there. I recently upgraded my MacBook Pro from Snow Leopard to Mountain Lion. Before the upgrade my mac would sleep automatically when the lid closed. However, ever since I've upgraded, when I close the lid, my mac doesn't go to sleep. However, if my mac isn't plugged in (running off the built in battery) it goes to sleep. I looked through system preferences and I can't seem to find any settings relating to this, does anyone have any suggestion on what's happening and how I can fix it? Many thanks in advanced.

    Test after each of the following steps that you haven’t already tried: Step 1 Apple menu > System Preferences > Print & Scan > Open Print QueueCheck all printers for unfinished jobs. Deal with any you find. Step 2 Apple menu > System Preferences > Energy Saver > Power Adapter > Wake for network access: uncheck. You may need to unlock the preference pane by clicking the lock icon in the lower left corner and entering your administrator password. Step 3 Apple menu > System Preferences > Energy Saver > Schedule > Start up or wake: uncheck.    Step 4   Apple menu > System Preferences > Sharing: uncheck all boxes. Step 5 Disconnect all wired peripherals except keyboard, mouse or trackball, and monitor, if applicable. Step 6 Launch the Activity Monitor application. Select All Processes from the menu in the toolbar of the Activity Monitor window, if not already selected. Enter “powerd” (without the quotes) in the "Filter" text field. Select the powerd process and click the Quit Process button in the toobar (stop-sign icon.) In the sheet that opens, click Force Quit. You’ll be prompted for your administrator password. The process will be relaunched immediately. Step 7 Reset the SMC. Step 8 Boot in safe mode and log in. The instructions provided by Apple are as follows: 
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you clickLog in.
     The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal. Don’t launch any applicationsat first. If sleep still doesn’t work properly, back up all data and reinstall the OS. After that, if you still have the issue, make a “Genius” appointment at an Apple Store to have the machine tested. If sleep now works as expected, go on to the next step. Step 9 Still in safe mode, launch the usual set of applications that are running when you have the problem, including your login items, one at a time, testing after each one. Some applications may not work; skip them. You might be able to identify the cause of the problem this way. Step 10 If sleep is still working after you’ve launched all the usual applications, reboot as usual (not in safe mode) and test again. If sleep still works, you’re done, at least for the moment. If you still have the sleep issue after booting out of safe mode, post again.

  • Wake on wireless possible?  Disable sleep when lid closed?

    I just bought my first Mac & am still trying to figure some things out.
    Is there a way to have it wake on wifi? I like to be able to connect to my machines when I'm at the office. My Macbook goes to sleep & then I can't remotely access it. Wake on LAN works fine, but I don't want to keep an ethernet cable plugged in.
    Another thing I can't seem to get is how to disable the Macbook sleeping when I close the lid. On my old Windows laptop, I'd often put on a podcast & listen while falling asleep & have one start as an alarm clock in the morning. I like to keep the lid closed to keep out dust, etc.
    I found a 3rd party app InsomniaX, but would rather find a supported way of doing this.

    Insomniax is your best bet. The only other way would be have an external monitor, keyboard, and mouse hooked up.

  • MB pro not sleeping when lid closed

    Hi, I came to work today, opened my backpack and found my laptop extremely hot in its sleeve. It appears it had not gone to sleep when I closed the lid. It then failed to run properly for about 20 minutes until it cooled down. Now it is ok, except that it will not run in lid-closed mode. I plug in my external display, put it to sleep, and wake it back up with the lid closed in order to use the external display. The display fires up for a few seconds and then turns off again. I've tried this over and over again, the computer simply won't stay on for more than a few seconds. However, when the lid is opened, it will run the external display in mirrored mode just fine. I think something is toast. Coincidentally, I had just downloaded the keyboard update 1.0 a day earlier... Anybody know why my computer is not sleeping when I close the lid and why it won't work in closed-lid mode anymore?

    I've had a similar problem since I first got this a year ago. Sometimes when I shut the lid, the display does not go to sleep, and sometimes it restarts automatically when I shut the lid! I've also found it very hot at times when it should have been sleeping. So far, it's only been a minor annoyance.

  • Optical Drive makes noise when lid closed

    Hello all.
    When ever my wife closes her MacBook the optical drive makes the noise as if it is being awken from sleep. The problem is that it does this over and over. The only way to stop it is to power down the computer. It does not do this when the computer is active, only when the lid is closed. Has this happened to anyone or does anyone know what the problem is and/or how to fix it?
    Thanks
    rx

    rx,
    I am having this exact same problem with my Macbook as well. I am very frustrated. My computer will be 2 yrs old in August. Within the last few months, I have had the battery replaced for burning up the computer (June '07), the optical drive replaced (Nov 07), and the hard drive replaced (Feb '08). It appears I am going to have to take it back to the mac store to get this fixed. This has been going on for a month and I have tried everything including Disk First Aid to try to get it stop! Please post if you find something else! Meanwhile, I will say the apple care warranty was a better investment then the computer itself. I have been VERY DISAPPOINTED with the product and I have had Mac products for years (Mac Performa, iMac, eMac, iPodmini).
    Heather

  • Macbook Pro 5,1 issue with shutting down when lid closed  - sleep issue

    Here is the issue I hope someone has seen and figured out the cause. This is on a Macbook Pro 5,1 (2.8 Ghz Unibody). This doesn't appear to be the random shutdown issue.
    My issue is when on AC power and you close the lid the mac sleeps. The light will blink indicating its sleeping. But at random time frames it shuts down. You open the lid and have to power on from a cold boot. Now if you hit sleep from the apple menu then close the lid everything is fine, it will sleep until the lid is opened. So its only when the lid is closed. And its random, sometimes it will stay in sleep mode for a few minutes or hours. But at some random point it will shutdown.
    Any thoughts???
    Thanks
    jim

    Hi and welcome to AD!
    Try a SMC reset.
    DALE

  • Computer not going to sleep when lid closed

    My wife's new MacBook Air has a couple of problems we can't figure out.  First sometimes the computer is not going to sleep when lid is closed and when we lift the lid everything is frozen.
    Second, the user Library folder is not seeable in her user account.  I know it's there because on the side bar there's a short cut to Preferences folder which we can open.
    Strange behavior.
    Thanks,
    Ron

    Ron,
    The user library folder (~/Library/) is hidden by default in Lion. I assume Apple doesn't want people mucking around with the sensitive files in there. So this is normal behavior.
    As for the freezing issue, I would suggest you reset your power management and perform a safe boot to clear out caches. You should also see if the issue persists after disconnecting USB perhipherals.
    Here's how:
    Power Management:
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer. 
    Note: The LED on the MagSafe power adapter may change states or temporarily turn off when you reset the SMC.
    Safe Boot:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).

  • Frozen when lid closed

    My laptop is Win8.1, I have set it to do nothing when lid is closed and power options are set to stay alive.
    I close the laptop lid and go to work. At work I TeamViewer onto my laptop but I cannot control Firefox (I can control the rest of the OS).
    Today I left my laptop open and now at work I have full control of Firefox, as well as everything else.
    Its like Firefox freezes with the lid closed switch

    Ok, if it works ok in Safe Mode, then an add on is causing this issue. [[Configuration Options for Add-ons]]
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Any way to prevent macbook air from sleeping when lid closed?

    I believe there is no way to keep your macbook/air running when you shut the lid.
    I am running a background job where I am downloading a huge amount of data from the internet, which is coming through slowly (other applications could be where I am running a web server....). I want the machine to be running, but not keep the lid open - since I might want to move the laptop, not leave the screen/keyboard exposed.
    Where can I request Apple to add support for this behavior? Or did they anticipate this request in Mountain Lion already?
    Any suggestions? Others who would like the same feature?

    NoSleep makes closing of your MacBook lid possible without going into sleep mode. Now you shouldn't plug your mouse and monitor to stay computer awake - just check a tick in the System Preferences and continue downloading of huge files and watching favorite movies over the network with lid closed.
    here you go : http://lifehacker.com/5934158/nosleep-for-mac-prevents-your-macbook-from-sleepin g-when-you-close-the-lid

  • Macbook pro goes to sleep only when lid is closed

    only than I can see the light flickering. when i change the energy saver option to let the mac sleep after 1 minute for instance, its not flickering and I hear the hdd still working.
    thanks

    Frankly, I have run out of suggestions. Other than..........
    If you have not already done so, disconnect all devices from the MBP.
    Try a PRAM zap.
    Make sure the padlock is locked in Energy Settings.
    IF no one else chimes in here, take the MBP to your local Apple Store or an AASP. Hopefully, you have Apple Care. Let them deal w/it.
    !http://i50.tinypic.com/izvwo1.gif!

Maybe you are looking for

  • MBVR---Use of t-code

    Experts in PM forum. Please explain me the purpose and use of the T-code "mbvr" for manually created transactions... What is the usage of this t-code?? Thanks in advance Murad...

  • Copy and paste audio clip and maintain effects and tweaks?

    I created a track on the iPad and transferred successfully to the desktop. I then used Melodyne to clean up the vocal track.  Some of the vocal timing was off so i used flex time editing to straighten it out. It's a piece I'd like to loop throughout.

  • PLZ convert LV5.1 file to LV 13.0

    i have LV5.1 file and i want to convert to LV13.0  Solved! Go to Solution. Attachments: the_amazing_labview.llb ‏160 KB

  • Modifying Business Catalyst Templates for the first time...

    ... how would I go about getting the business catalyst templates for modifying in Muse?

  • Removing WLCs from list in NVRAM for deployed LAPs

    Hi, Here is a question, which I really would like to have an answer on. I have been searching for this, and can not find any on this. I am up to the point where I start to think it is simply not possible. I would like to remove all existing WLCs from