How do I keep my child from messing around in my computer?

My nearly four year-old keeps getting into my computer unattended, such as when I'm putting the baby down for nap or making dinner. I am dealing with the issue on its own, but I need to back up our handling of things with some better protection for the machine. All I really want to do it make it so that a password has to be entered to get the computer out of sleep. Is that possible? All I've been able to figure out how to do is assign a password to an account, but to make that come into effect I have to log out every time I step away from the machine, and it wants to shut down applications etc to do so. There has got to be a simpler way. Any help/advice would be great. I am already very frustrated with having to deal with the kid, I'm sick of wasting my time trying to figure out how to protect my machine.

system preferences -> security -> "require password immediatly after sleep or screen saver begins"
enjoy

Similar Messages

  • I created an album from photos taken off three different cameras. I am sorting the photos manually and when I close iPhoto, the photos move back either by date or by camera import time. How can I keep the photos from moving around?

    I created an album from photos taken off three different cameras. I am sorting the photos manually and when I close iPhoto, the photos move back either by date or by camera import time. How can I keep the photos from moving around?

    Don't tell us, tell them
    http://www.apple.com/feedback/macosx.html is the place for feature requests and feedback

  • How do i keep my cursor from jumping around when i am typing

    how do i keep my cursor from jumping around when i am typing [email protected]
    == This happened ==
    Every time Firefox opened
    == none

    Check your settings in System Preferences >  Trackpad
    Try a different Tracking speed.
    Sometimes just cleaning the trackpad can avoid erratic cursor behavior.
    How to clean Apple products

  • How can I keep my child from UNBLOCKING contacts or numbers I have blocked? I know in restrictions when you disable account changes at least on ios 6,this greyed out the iMessage button so the kids couldn't deactivate their text feature.

    Here's the issue.  Kids got themselves into some trouble on iPods.  We set all restrictions any turned off iMessage etc, which I noticed they can't turn back on bc it's gray with the don't allow account changes set.  BUT, it still allows Wi-Fi to be turned on and off!  How can I disable them being able to turn that on wo asking me??  In ios 7, the blocking feature, fabulous, BUT, how can I keep the kids from UNBLOCKING numbers I have blocked?  What I am looking to do actually is allow my kids to be able to text family but block everyone else.  And ask me to turn on wi fi.  How and can this even be done?  Right now my d text is turned off completely.  And she knows the inside and out of her device so she can turn wi fi on herself.  On vacation she entered the wi fi code of our condo and so I did forget network, which didn't work and wi fi kept connecting anyway wo requiring password again!  HELP!  Thanks :)  Also, they have iPods now but am asking these questions based on them getting our 4s's with ios 7.

    TeresaBoo, I empathize with your dilemma and have a similar problem. I'm trying desperately to keep my teenage daughter away from a controlling and abusive boyfriend. Of course, she is in denial and thinks it's love. Sure, I can block text messages through our wireless provider, but iMessages run on an independent network. I can block a phone number from iMessaging on her phone, but she can unblock it just as easily. I wish there was some way for parents to create a password to protect settings. Don't let negative comments get you down. Honestly, if someone can't relate to your question or offer help, why are they even bothering to comment??

  • HT201303 How do I keep my child from accidentally purchasing in-app purchases?

    Please help!  My son accidently purchased 150.00 worth of coins on a free app. 
    1.  How do I keep this from happeneing again?
    2.  Does Apple help refund this mistake?
    Thanks!

    Welcome to the Apple community.
    You can turn off in app purchases in settings> general> restrictions.
    Apple's policy on sales of digital content is that all sales are final. If however you wish to appeal to Apple, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History on your computer.

  • Exporting to PDF with hyperlinks, how do I keep the squares from showing around them?

    I have a document Im creating and I have ads created in graphics, other PDFs, and text which all have hyperlinks in them that I want to be clickable.  the JPGs with them, I put an invisible square over the link and assigned the link.  For most of the PDFs I got, the hyperlinks were already clickable.  When I export the final document to PDF, all those links are carried over just how I like, and no squares are shown over those links...perfect.  For all the typed text that has hyperlinks, those show a square going around those links.  Its VERY ugly!  How do I keep it from doing that and keep everything clickable that needs to be?

    The following simple Javascript should set all of  document's hyperlinks to "invisible rectangle":
           var myHyperlinks = app.activeDocument.hyperlinks.everyItem().getElements();
    for (i = myHyperlinks.length - 1; i >= 0; i--){
           myHyperlinks[i].visible = false;
    (save it as "HyperlinksInvisible.jsx", or whatever, put it into the Scripts panel folder, and double-click its name in the Script Panel to run it.)

  • HT1904 how can i keep my child self from the enternet

    how can i keep my child self from internet

    Hi Friend,
    I cannot know what you mean?
    If your meaning is you don't want your child connect to the internet you can forget the wifi connection of his/her iPod and then change the wifi password.
    You also can turn on Restrictions in Settings>>General>>Restrictions

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • How do I keep my installer from trying to update with Photoshop instead of installer? Quark can't update because the installer opens Photoshop which doesn't recognize the file and I'm not given the option to choose anything else.

    How do I keep my installer from trying to update with Photoshop instead of installer? Quark can't update because the installer opens Photoshop which doesn't recognize the file and I'm not given the option to choose anything else.

    1. Sync wasn't intended to be used in that manner. You would be better off carrying around a USB Flash Stick with Portable Firefox for use on "strange" PC's.
    2. You could open the "Library" {Ctrl + Shift + B} and highlight all those bookmarks and then delete them all at once. But that would also delete all the other bookmarks, and it isn't foolproof. All another person would need to do it to '''''restore''''' a bookmark backup file that has your bookmarks. Beyond that, a new Profile could be created and then the current Profile deleted; but that's "messing with" someone else's computer - an action that is worthy of terminating a friendship over, IMO.
    And if that "public" computer was set up properly, Sync should have been disabled.

  • How do I keep my Imessages from being viewed on other devices under my apple ID?

    How do I keep my Imessages from being viewed on other devices under my apple ID?

    No, you can authorize any number of email addresses on your Apple Id and then select one of those to use as an alternate Send and Recieve for Messages. It isn't necessary to use seperate AppleIDs. I use my phone number on my iPhone and an email address on the iPad.

  • How can i keep my music from my iPhone and sync it my new macbook? Only purchased music seems to be available to sync, even though the rest of the music was uploaded from CD's on my  last laptop.

    Hi, I have changed from an old laptop to a macbook air. how can i keep my music from my iPhone and sync it my macbook? Only purchased music seems to be available to sync, even though the rest of the music was uploaded from CD's on my  last laptop.
    As I can't upload CD's onto the Macbook Air, how do I keep the existing music on my iphone syn onto my new macbook without deleting all the cds on the iphone??
    Many thanks!

    Hi RaulRod,
    Are you pressing the Sync button to transfer music after connecting your iPhone or do you have the option checked to 'Automatically Sync when the iPhone is connected?'
    Have you tried manually dragging and dropping music from your library into your phone?

  • How do you keep your message from appearring on a locked screen

    how do you keep your message from appearring on a locked screen

    Go to SETTINGS --> NOTIFICATIONS --> MESSAGES
    Change "View in lock screen" to OFF
    That should sort it for you.

  • How do I keep the music from my old 1st gen mini and put it on my new ipod touch without loosing it. the computer I used to load the mini was stolen quite some time ago????

    How do I keep my music from my old 1st gen ipod mini when the computer that I originally loaded it with was stolen more than 5 years ago and transfer all the music onto my new ipod touch? My fear has always been that plugging my mini into another computer and attempting to download more music onto it or take what's on there off will end up erasing all of it because of file sharing regs. I would really prefer not to have to repurchase several hundred dollars of music as many of the original cd's that I used to download have been either lost or damaged over the years. Is there anything I can do????

    See:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • How do i keep the aps from running in the background on my iphone 4s?  Just downloaded the new version

    How do i keep the aps from running in the background on my iphone 4s?  Just downloaded the new version

    If you're talking about closing running apps, they changed it up a bit from iOS6. Now you just double click the home button to bring up the running apps, side scroll to the app you want to close, then just swipe up.
    = L.I.

  • Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites?

    Question
    Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites? All the garbage, it lets sail right in, but my bank accounts and library accounts are not allowed. Why is this? I have looked in the help section and tried the permissions manager, but when I type about:permissions in the location bar, I receive the following error, "The URL is not valid and cannot be located." Thanks for any useful information.

    Thanks for responding. Sorry I wasn't very precise. When attempting to navigate to one of these sites, a message at the top of the screen appears, "Firefox prevented this page from automatically redirecting to another page." Then there is a dialog box which says, "Allow." Once I 'allow' it, the page I'm trying to open does so. This only occurs with certain pages, and usually pages that I need open without any computer interference. I hope this clarifies things. Again, thanks for taking your time to respond.

Maybe you are looking for