Created a new account - now how do I hide documents?

My friends are always grabbing for my computer for quick internet visits, etc. - but I have some legal documents I'd rather them not see. I created a new account thinking this would solve the issue, but while it reset my internet and applications - all my documents are still visible. I set it so they'd be password protected, but while that stopped videos from being able to be opened, microsoft word and text edit documents can still be opened. I want this user account to have no openable or even visible documents, music, internet bookmarks, pictures. I want all files from the administrator account to not only be inaccessible, but also invisible. It doesn't help that some of my documents cannot be opened, but you can still see the file names which are revealing enough. How do I hide all documents and files - make them un-openable - but not mess anything up on my original (now administrator) account?

If they are using another account, no one should be able to access folders in your home directory unless the permissions allow it. If you have created new folders at the root level of your user's home directory (along side Documents, Pictures, etc), other users will be able to see inside those, since new folders have default permissions allowing them to be read by everyone. If that is the case, just go back to those folders and change the permissions so that others can't read them (everyone=no access).
Your user folder, by the way, is readable by others so that they have access to your Public and Sites folders.

Similar Messages

  • My webhost had me delete my TBird account, and create a new account. How do I get my folders & files from my Hardrive back to TB? THANKS!

    My webhost had me delete my ThunderBird POP3 account, and create a new ThunderBird IMAP account.
    This took all my folders and files out of Thunderbird!!!
    I know where all my folders and files are located on my hard drive.
    How do I get my folders & files from my hard drive back to TB?
    Any help will be much appreciated.
    THANKS IN ADVANCE!
    Jeff

    When you delete a Pop mail account, it disappears from the Account Settings and Folder Pane, but fortunately it still exists in the Profile folder unless you had removed it.
    Ideally, you should have moved all the emails into 'Local Folders' before removing the account.
    You could use this addon tool to import messages into 'Local Folders' account.
    '''ImportExportTools: '''
    * https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/
    Download the .xpi file and save to desktop or Downloads folder.
    '''To install addon:'''
    In Thunderbird
    'Tools' > 'Addons' OR 'Menu icon' > 'Addons'
    * click on the gear wheel icon and select 'Install addon from file'
    * Locate and select the .xpi file you downloaded and click on 'Open'.
    * After installing you will need to restart Thunderbird to activate.
    In 'Local Folders' create some folders with suitable names.
    Right click on folder > ImportExportTools
    There are a couple of Options on importing
    See image below as example aid.

  • For some reason when iMessage tries to verify my email, it wont work. It sends me right back to the previous "Sign in with your Apple ID or create a new account". How can I fix this?

    I'm not sure what happened besides the fact I accidentally changed the date and time. After that my iMessage has been acting up and won't verify my email. What do I need to do?

    Change the email on the old account to another new, current email address.
    An email address can only be linked to one Apple ID.
    It is possible to have content from multiple Apple ID's on a single iDevice.

  • I want to completely restart my iTunes music library without creating a new account.. How can I do that?

    I want to delete all the music in my iTunes library and restart fresh with new music without creating a new account.. how do I do that.?

    Maybe you should post it in iTunes forum. I will ask the host to relocate your post.

  • Guys i have a problem, I used to download apps from one of my friends apple id, now i created my new account, but when i was about to update my apps its asks for my friends id and password. now how could i update my old apps from my new apple id?

    Guys i have a problem, I used to download apps from one of my friends apple id, now i created my new account, but when i was about to update my apps its asks for my friends id and password. now how could i update my old apps from my new apple id?

    The_Tonmoy wrote:
    I have no communication with my that friend :/ So it means i need to delete those apps? There's no other solution to update those apps?
    No.  purchases are forever tied to the apple ID used to buy them.  Delete them and buy your own copies.

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • HT2589 i have another account that has money in it already  but i had forgotten my security answers so i created a new account with a recovery email but my money is not added into my new account. how can i recover the money and added to my new account

    i created a new account because i had forgotten my security answers. now the problem is that the money i had in my other account wasnt transffered to my new account, even thou i put in a retreive  email address into my new acount. how can i tranffer the money into my new account?

    You can't transfer a balance from one account to another account, it can only be used on the account that it was originally redeemed onto.
    If on your old account you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address on it then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • HT4897 I created an alias precisely because I wanted to make it the new default name and then quickly realized it wasn't possible. How long after deleting the alias will it become available again so that I can create a new account with it?

    I created an alias precisely because I wanted to make it the new default name and then quickly realized it wasn't possible. How long after deleting the alias will it become available again so that I can create a new account with it?
    I'm trying to make iCloud mail my primary email but I'm concerned that I may have lost the perfect email address forever.

    I have the same problem. After our wedding I've created an alias ([email protected]) to my actual AppleID Account ([email protected]). Now I'd the idea to delete the alias and my actual AppleID to create a new AppleID with ([email protected]).
    Is there really no possibilty to do this?
    Thanks in advance for quick and positive feedback.

  • My apple ID has been hacked so I had to create a new account, how can I get my old account back??

    My apple ID has been hacked so I had to create a new account, how can I get my old account back?? My iPhone and iPad are linked to the account i lost

    freedone wrote:
    Great! Yes mysterious is best way to describe internet eh lol. It could be that I have asked other questions that had absoulutely no relevance to the current q,  onto previous questions. So I am going to look thru them all..
    I did say m i s c h i e v o u s  didn't I? Mysterious it is though too.
    Regarding the latter, I have some tips for searching... (WARNING: I don not have a high opinion of the Forum Search abilities)
    Discussion Search
    https://discussions.apple.com/search.jspa?type=discussion&q=Great!&author=%2Fpeo ple%2F946207&sort=updatedAsc
    The above is what is called "Space Search"
    I used the first word of you above post " Great! " with a couple of filters applied - found this thread and one other
    If you can think of any term you may have used, it may be of some benefit to use this search
    ELSE
    I am VERY fond of Google "Site Search" for all of Apple.Com and its subdomains...
    a mere search for your username with quotes no brackets [ "freedone" ] yielded 313 results - but there IS another username "freedoneb" that may take up some of that real estate
    https://www.google.com/?gws_rd=ssl#safe=off&q=%22freedone%22+site:discussions.ap ple.com

  • I have itunes on my computer but its my wifes account. how do i create a new account for me?

    i have itunes on my computer but its my wifes account. how do i create a new account?

    I have the same problem,,,any help please ? thnx

  • I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work. Help?

    I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work.
    ^^ that's the main problem. Here's the full history.
    I bought a new 13" i5 MBP, early 2011 edition. I had an old white Macbook 2.14 ghz core2duo on Snow Leopard. I attempted to port over my time machine backup, but encountered problems in that my User was inaccessible from the new computer after the import finished, and I had to go in and change the root password, etc, and for some reason or another, I couldn't install any programs at all from that administrator's account. By "couldn't" I mean I could install them, but upon installation they would never boot. So, I took it to the apple store and did a clean install from the most up to date Lion OSX. Then, I created a brand new admin account, instead of trying to import the old one, and things seemed great. Then, I just imported my old files from the TM backup, but not any system settings, permissions, or user data. Just my Docs, pics, vids, apps, and itunes stuff.
    Here's where things get weird again. I imported this stuff under the name "old", but all of these folders have a red negative sign on them, marking them as restricted. So, from my main admin account, I cannot even peruse these folders. Since I didn't import user data, I can't sign in to the "old" account to change permissions. I already tried to change the permissions from system preferences, but that didn't change anything. And now, for whatever reason, of all the apps that were imported then, MS Office is the only set of apps that does not work. When I click on it, it just says there was a problem and asks if I'd like to send a report to apple. I tried reinstalling it to no avail. I'm an English student, so i really need access to Word. Can anyone help? The Apple store is a major detour for me and would like to fix this issue myself.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • HT5622 My family shared an itunes account and now i'm moving out and have created a new account just for myself. Is there a way to transfer my previous purchases on the other account to my new account?

    My family shared an Itunes account and now i'm moving out and have created a new account solely for myself. Is there a way to transfer my previous purchases on the family account to my new account?

    In order to continue to play and sync the music you purchased with your old account, you'll need to authorize your new computer/iTunes library to do so.  You can do this by choosing Store -> Authorize This Computer and then entering in your old account credentials.
    That's all you should need to.  Then just create your own account and start purchasing and using it the same you have with the old one.
    B-rock

  • I've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    i've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    Look at this support article:
    http://support.apple.com/kb/ts2570
    Ciao.

  • I use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    i use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    Welcome to Apple Support Communities
    That's the classic behaviour after using Migration Assistant and that's normal.
    To transfer the data from the new user account to your old user account, you can follow some steps. Here is all the information you need to do this > https://discussions.apple.com/docs/DOC-5472

  • How do I create a new account and get stuff from the old account to the new account

    How do I create a new account and get stuff from the old account to the new account

    There are instructions on this page for creating a new account : Set up an Apple ID in iTunes
    Or if you don't want to give credit card details : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    But you won't be able to transfer purchases from your old account to it, all content that you download from the store will remain tied to the account that downloaded it.

Maybe you are looking for

  • How can i copy and past music files, Images and Videos to my Apple Iphone?

    I have a new Iphone 4 mobile phone. Any one can  help me  for how can i stote music,videos and images files in My Iphone? When i search on internet i saw icloud and itunes. Is there any net connection requered to use icloud or itunes? Without net con

  • If iphone is BNIB on a different network can i insert my sim card before syncing to itunes to unlock (not jailbreak).

    I am looking at buying an iPhone from eBay as my O2 contract is pretty good and I don't want to lose this. I read somewhere that a Brand new in box iPhone is sim unlocked already even though it was from a vodafone or 3 contract. So as long as I put m

  • BW statistics cube are loaded from BWDclnt or ERDclnt ?

    Hi all, I have installed the cubes for statistics 0BWTC_C04 and 0BWTC_C02. I have also actiavted all the master data source srealted to these cubes and transaction datasource related to these cubes. Now my question is where do I load the data from si

  • Some Menus Inaccessable

    Oh please help. A few days ago I began using Premiere Pro CS4. I have had it for awhile in Master Collection but only now had a need to use it. When I first got into it it gave me the standard 'New Project' / 'Open Project' options but mostly did not

  • Silverfast PlugIn

    Hello, i have installed Adobe Photoshop Elements 12 Editor and Siverfast 8 for my scanner Canon CanoScan 8800F under MacOs 10.9. The software function is ok, but i found under photoshop no PlugIn for my scanner. Installing the software in Windows wit