Urgent Assistance Needed:  All Documents deleted after setting system-wide viewing preferences for Finder

I got myself into some trouble...
Following the guide here to force a default Folder view to sub folders:  http://apple.stackexchange.com/questions/10488/system-wide-finder-view-preferenc es
Which is:
There is a simpler way.
In the Terminal, navigate to your $HOME directory: cd ~
Remove all the .DS_Store files:find ~ -name ".DS_Store" -depth -exec rm -f {} \;
Relaunch finder going to: Force Quit → Finder
Set your global preferences using ⌘J and press the Use as default button.
Now, every folder you open or create will have the new settings.
I now have the existing Folder structure in tact for Documents, but every single file is gone (in my entire Documents directory).
Naturally I'm thinking two things:
1)  Oh no.  I knew better than to go down this path without knowing exactly what I was doing.
2)  How do I "get my files back..."
I'm not sure if they're just not viewable or if they were deleted.  Essentially everything I've configured on the machine (From Apple login to mouse scroll reversal) has been undone.  I don't have TimeMachine set up yet - I brought two remote hard drives to work today to get it done but they're both NTFS so I couldn't progress. 
I'm reasonably technical but new to Mac. 
Advice is greatly appreciated... I'm GREATLY distressed at the moment...
<Edited by Host>

Ok so "DS_Store files are used by Mac OS X to store folder specific metadata information."  Supposedly they get recreated... except I didn't get a nice smooth transition of newly created invisible, instead every file on my machine is "gone."

Similar Messages

  • Even after setting system preferences to Never accept cookies and having deleted all cookies, Safari continues to add cookies.  I've tried to reset safari but the problem persists.  How can make safari Never accept cookies.

    I'm having a problem with cookies on Safari.
    Even after setting system preferences to Never accept cookies and having deleted all cookies, Safari continues to add cookies.  I've tried to Reseting Safari several time but the problem persists.  This is occurring under two different user logins one of whom is an administrator the other a standard user.  How can I get safari to Never accept cookies?  This is a recent problem because in the past it used to work properly. Any idea what might be going on here?

    Hi David:
    I did read (yesterday in another thread) about a similar problem.  I cannot test it myself as I accept cookies (from sites I visit) and do not want to delete all of mine for a test.
    I do not know whether it meets your requirements, but you could turn on private browsing.  I use that (or Microsoft's variant on IE) when I use public computers.
    Barry

  • 24 hours after setting the erase button on the Find My iPhone option in iCloud the phone was still not erased. Does this function work in a timely fashion?

    24 hours after setting the erase button on the Find My iPhone option in iCloud the phone was still not erased. Does this function work in a timely fashion?

    No. It functions when connected to the Internet.

  • W2K8 & Win7 - Setting system-wide Trusted file locations not working

    Win 2008 Network, Win 7 workstations.
    RE: Setting system-wide trusted file locations
    I have an application using Flash stored on a network location that accesses other files in the same location.  This causes the security warning "The following local application... is trying to communicate with this internet-enabled..."  I can add the location to the trusted sites in the Setting Manager and the warning goes away.  It is not practical however to do this on every machine on the network.  I have tried the FlashPlayerTrust directory and mms.cfg file and neither of these seem to work.  Is there a trick to getting the FlashPlayerTrust directory to work properly.  If I could get this working, I could create a script that copies this file to all machines on the network. 
    Any help you be greatly appreciated. 

    Hi Todd,
    Can you please provide just a little more detail?
    * When you say "accessess", what API is being used?  Are the paths to the other files relative, file: URI http: URI, other?
    * In the FlashPlayerTrust directory, are you using the same path notation as appears in the Settings Manager?  What's a sample {filename}.{ext} being used?
    Thanks!
    -Erica

  • Set system wide default mailto url

    I'm trying to configure system wide settings in linux so any new user will apply for this settings.
    I want register my zimbra server with mailto links.
    I've found some information here:
    http://www.zimbra.com/forums/general-questions/48547-how-control-mailto-selection-firefox.html
    but this must be performed by the user and I want to be preconfigured.
    I also tried to play with mimeTypes.rdf, but it seems that there's no system wide mimetypes file. is just created when users changes something.
    how can I setup that setting system wide?

    I've found a partial solution.
    create an application file, for example '''/usr/share/applications/zimbra.desktop''' with this content:
    [Desktop Entry]
    Icon=mail-message-new
    MimeType=x-scheme-handler/mailto;
    Name=Zimbra
    Comment=Zimbra
    Exec=xdg-open https://my.zimbraserver.com/zimbra/?view=compose&to=%u
    Type=Application
    X-XFCE-MimeType=x-scheme-handler/mailto;
    then modify file '''/etc/gnome/defaults.list''', find and substitute '''x-scheme-handler/mailto''' with filename you just created:
    ''x-scheme-handler/mailto=zimbra.desktop''
    the caveat is only works with unity, if you use another wm probably won't work

  • URGENT-- Data is going to delete after end of loop .

    hi all,
    i have written code .....
    SELECT DISTINCT M1VKBUR M1KUNNR M1VBELN M1BSTNK M1AUDAT M1KNUMV M2NETWR M2MWSBP M3ERDAT M3FKART
                                         INTO CORRESPONDING FIELDS OF TABLE ITAB
                                         FROM VBAK AS M1 INNER JOIN VBRP AS M2
                                         ON M1VBELN = M2AUBEL
                                         INNER JOIN VBRK AS M3 ON M2VBELN = M3VBELN
                                         WHERE M1~VKBUR IN VKBUR
                                              AND M3~ERDAT IN ERDAT
                                               AND M1~KUNNR IN KUNNR
                                                AND M3~FKART IN FKART .
    DELETE ADJACENT DUPLICATES FROM ITAB COMPARING VBELN .
    LOOP AT ITAB .
    SELECT KAWRT KBETR INTO CORRESPONDING FIELDS OF TABLE ITAB2 FROM KONV
                   WHERE KNUMV = ITAB-KNUMV
                   AND KSCHL IN ('SKTO' , 'INV1') .
      MODIFY ITAB2 INDEX SY-TABIX TRANSPORTING KAWRT KBETR .
    ENDLOOP .
    LOOP AT ITAB2 .
      ITAB-CD_AMT = ITAB2-KAWRT * ITAB2-KBETR / 10 .
      ITAB-AMT_DUE = ITAB-NETWR + ITAB-MWSBP - ITAB-CD_AMT .
      MODIFY ITAB INDEX SY-TABIX TRANSPORTING CD_AMT AMT_DUE  .
    ENDLOOP .
    problem is that i m not getting values in itab2 at end of itab, its going to delete after completing  last itab value of KNUMV.
    can anybody help me its urgent .
    thanks in advance .
    Anil .

    Hi Anil..
    There are some corrections needed in ur Code..
    Check the modified code: Changes in BOLD
    SELECT DISTINCT M1VKBUR M1KUNNR M1VBELN M1BSTNK M1AUDAT M1KNUMV M2NETWR M2MWSBP M3ERDAT M3FKART
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM VBAK AS M1 INNER JOIN VBRP AS M2
    ON M1VBELN = M2AUBEL
    INNER JOIN VBRK AS M3 ON M2VBELN = M3VBELN
    WHERE M1~VKBUR IN VKBUR
    AND M3~ERDAT IN ERDAT
    AND M1~KUNNR IN KUNNR
    AND M3~FKART IN FKART .
    <b>SORT ITAB BY VBELN.</b>
    DELETE ADJACENT DUPLICATES FROM ITAB COMPARING VBELN .
    <b>IF ITAB[] IS NOT INITIAL.</b>
    SELECT KAWRT KBETR INTO CORRESPONDING FIELDS OF TABLE ITAB2
    FROM KONV
    <b>FOR ALL ENTRIES IN ITAB</b>
    WHERE KNUMV = ITAB-KNUMV
    AND KSCHL IN ('SKTO' , 'INV1') .
    <b>ENDIF.</b>
    LOOP AT ITAB2 .
    ITAB-CD_AMT = ITAB2-KAWRT * ITAB2-KBETR / 10 .
    ITAB-AMT_DUE = ITAB-NETWR + ITAB-MWSBP - ITAB-CD_AMT .
    MODIFY ITAB INDEX SY-TABIX TRANSPORTING CD_AMT AMT_DUE .
    ENDLOOP .
    Now it works properly.. And with better performance.
    Note: Avoid using CORRESPONDING FIELDS option in the SELECT when the Internal table structure is same as the Fields selected.
    <b>Reward if Helpful.</b>

  • Can't get ATV working with Onkyo TX-SR605-URGENT ASSISTANCE NEEDED!!

    I'm hoping someone will be able to give me some advice, as I've now spent way too much time trying to figure out what's going wrong. I've just purchased the Onkyo receiver, which in itself is an extremely daunting piece of equipment after my very straightforward Rotel stereo amp!
    I have only 1 HDMI connection available on my 32" Panasonic LCD TV & have, to date, had my ATV connected to it. With my ATV also connected to my amp (via RCA cable), I've been happily viewing/listening to all my iTunes content this way. I understand from reading elsewhere in this forum that I should be able to maintain my HDMI connection to ATV, connect into the receiver using optical, and by so doing, obtain the same results (if not better, thanks to the optical connection) as was previously the case. So far, I've been unable to do this. The only way I've been able to get any audio happening through the speakers is by reconnecting the RCA cable. The optical cable I purchased by the way is a good quality one so I doubt this is where the problem lies - although I guess it's possible.
    The 1st problem I encountered when endeavouring to set the system up was that I was unable to get any onscreen information, as I couldn't find an AV input that responded to the receiver's 'setup instructions'. I assumed this would come via the TV's HDMI AV option, given the ATV is the means of connecting to the TV & that's connected via HDMI, but no joy. However, I did some of the basic setup w/o the onscreen visuals, and proceeded to see if I could access my iTunes content with the connections I referred to earlier. As I said before ... no go w/o the RCA cable connected and even then, no sound through the speakers if I reverted to just watching the TV.
    I'm driving myself crazy here, and am now at the point where I can see no value in continuing to read & re-read the Onkyo manual. Although I can accept that it's likely to take me some time to learn how to properly drive this beast and get the most out of it, I don't think (from what I've read elsewhere here) that it should be this hard to get what I'm wanting up and running.
    Please HELP and save my sanity!
    [Thanks in advance to anyone who comes to the rescue ]

    jrmccoy, thank you so much! I have never used an optical connection until now, & so was not aware of the necessity to get the 'snap' happening in order to get a good connection. With some trepidation, I applied the required force to the connection to the ATV - sure enough, it 'snapped' in. I tried to get the receiver connection to snap as well, but had no luck there - it seems to be a very 'sloppy' rather than tight connection that slips out with very little effort. However, after pushing really hard on the cable & getting no better connection, I gave up & tried it as was. The result was that , yipee, I now have it all working as I'd anticipated it should. The only thing I still don't have, is the TV sound coming through the speakers - I thought that with the ATV providing the conduit between the TV & the receiver, I wouldn't need any other connection from the receiver to the TV. I suspect now that that was an incorrect assumption! Thought it was all a bit too easy ... sigh.
    Once again Apple Discussions have come to my rescue - I honestly don't know what I'd do without the assistance of all you generous people out there with so much & such wide-ranging knowledge!

  • All data deleted after upgrade to iOS8

    I am deeply sad. All data has been deleted after upgrade to iOS8.
    What I did:
    1. Connect ipad to PC to transfer records from voice recorder.
    2. iTunes offered to upgrade system.
    3. I confirmed.
    4. Some unknown error occured in the end of upgrade process.
    5. When iPad started, iOS8 was there. All data disappeared.
    6. I am sad. All valued data I need is lost... (no backup has been done before upgrade).
    Pls advice is it possible to get data back.

    Yes. I did backup.
    But don't know how to get it.
    Actualy, all I need is 2 records from Recorder programm. Before upgrade I downloaded records from itunes; screen → http://joxi.ru/caQdVIwyTJDKAjTtsuk
    Now it is empty, no records.
    I see that backup of this programm data available in storage. But don't know how to get it from there; screen → http://joxi.ru/taUdVP3JTJAaYtIkBaI
    By the way iTunes tells me that backup copies available for today only → http://joxi.ru/7KUdVP3JTJBAXfQZjgI

  • All mail deleted after restart!

    I deleted some files on my computer because my start-up disk was filling up (deleted in iTunes and iPhoto), but when my computer booted up again, Entourage had erased all of my inbox, outbox, sent mail, and deleted mail that I had accumulated for 2 years! It also erased all the information to set it up: I have to re-enter the email address I use because it cannot send and receive mail yet.
    Is there any way to retrieve my lost mail??

    It gets weirder:
    If I "trick" Mail's setup by having it use some random server (so I can manually input all of the settings), I am able to access gmail via IMAP & SMTP.
    So I can get it to work... BUT, there's a "funny" caveat:
    Under Mail's preferences (Accounts tab), there is the 'Description', 'Email Address', etc. information.
    Well, if 'Email address' is a bogus address, it works (Still the correct username/pw/server information, though).
    If I set it to the actual email address, Mail then asks to save the settings - and if I click "yes" mail immediately crashes.
    O.o

  • ALL contacts deleted after APP updates

    Hi
    All my contacts were deleted after some applications were updated on my Iphone. How do I restore from my computer backup only the CONTACT information, as my phone has photos which have yet to be backed up onto the computer. I cant backup my phone now as my contact list is empty. Advice anyone?

    Golly, you've been a contributor here for a while now, so surely you know that this is a user-to-user community, not a place to YELL at your carrier or BB. I realize you are upset, but YELLING at the kind volunteers who might want to help you may not result in them wanting to help you (if you want help...your post is more of a commentary than a request for help).
    Good luck.

  • Physical Inventory Document deletion in Production system

    Hi Friends,
    There is an physical inventory document # xxxxxxxxx from 2003, which has
    also posting block, which is likely to cause that couple of materials
    can not be maintained.
    Now This document needs to be simply deleted in tx
    MI02. I tried this in Test system and did not have any trouble.
    However I am not sure can i do the deletion in Production system..??
    Pleae guide me is there any problem in production to cancel this Document.
    What type of precations i  need to take care in Production system.
    Brgds,
    RK

    Hi there
    You can delete it directly, it is not an issue, if you want to cross check ( if the material with CC), you can run in MICn for those materials and generate session page you can see for avail for the generate session to create the new PI/CC (based on the Last count date as the older one, not the recently counted and deleted,,)
    Hope it helps
    Senthil

  • Setting default "Initial View" options for new PDFs

    I usually want most of the PDFs I create to open with the pages panel displayed and “fit to window”. Currently I open every PDF and change that in the document properties under “Initial View”, save and close.
    There must be a better way.
    Is it possible to set this as the default for all newly created PDFs as part of the job options definition?
    I've searched in the different settings panes, but to no avail.
    Any hints appreciated.

    The Initial View (IV) settings are not part of the options when creating a new PDF, either in Acrobat or Distiller.
    There are several options to apply IV depending on the version of Acrobat you're using. You can create an Action in Acrobat X which applies IV to any open file as per your requirements, and optionally saves it as well. In Acrobat 9 or earlier you can do a similar thing with a batch process sequence.
    If you need to attach IV as part of the creation process then you can use an "epilogue.ps" script to add commands which Distiller will append to the PDF, and link that PS file to one of Distiller's presets.
    Lori Kassuba has a blog post about this method.

  • Can I set a default Playback preference for multiple users on same PC?

    I am setting up an editing suite for our University which has a "per machine" Creative Cloud licence. It is a PC installation. This machine will be used by a class of students who will log in with their own credentials. I need to set the preferences for Premiere (video output, workspace layout, default drives etc) so that it will be the same for all users logging in since we want a consistent setup for teaching purposes and dont want to have to help each student set up so that it shows correctly on the monitors. Is there a way of saving this setting as the default for every user?  In particular, as we have dual monitors, we want to save the preferences - Playback to always appear on the second monitor. This is really important for us - I need an answer before building more suites.
    (Adobe won't let me ask them directly, so I have to wait for someone to provide an anwser on the forums... not great customer support in my book)

    Firstly...is  this editing suite for the purpose of teaching editing or something else?
    Next ...what is your experience with PPRo?
    You can set up the machine(s) initially exactly how you want them  in regards to hardware and screen layouts etc.  Thats easy and can be called..'University of Waikato Default Edit Workspace' for example. That is  only part of it though.
    You can set up and share a common Key Board Short cut Preference File.  Same as Export Presets.
    There is no way you can "Default" all the USERS stuff for individual unique projects  though without creating a massive potential for disaster and confusion.
    Each will need to have access to many separate drive locations for their media (audio, graphics, footage) and the knowledge to create, access and locate it.
    THey will each need a separate Location for their Projects as well as their media.
    If they are editing students...they should be taught how to set up everything for themselves so they have an understanding of the fundamentals and basic s of NLEs

  • Set system-wide Finder view preferences

    I know that .DS_Store files are created in every directory I enter with the finder in Mac OS X, and that keeps track of the folder's metadata (including how is it being displayed). I also know that this command:
    sudo find /Users/[USERNAME]/ -name ".DS_Store" -depth -exec rm -f {} \;
    ... will recursively delete all .DS_Store files insite the /Users/[USERNAME]/ folder.
    Also, I know that when pressing CMD+J inside a finder window, selecting the configuration I want (40x40 icons, small-medium grid space, arrange by kind, text size 10px, show item info, show icon preview, background white) and selecting "use as defaults" will.. well, make it the default, and holding OPT will restore it to THAT default.
    The thing is that, when I create a new folder, it doesn't take those parameters. And the folders that HAD .DS_Store files deleted keep that previous configuration, not the "default" one.
    What can I do to set a system-wide, consistent finder look?
    I'm on Mac OS X 10.6.6.

    Hi,
    I think I remember a similar problem in Tiger yonks ago. I recall the solution was to make all the changes to the Finder whilst in an Admin account - this way the choices stick for all windows?
    Worth a shot.
    S.

  • Using /etc/bash.bashrc to set system-wide alias

    Hi,
    I would like to set some system-side aliases and from what I read /etc/bash.bashrc is the correct place to put them.
    However, it seems that the root account doesn't load this file. 
    What is the correct way to define system-wide aliases?
    Thanks.

    To be more specific, the aliases are not visible when I use a login shell i.e. 'su -'.
    According this explanation http://stefaanlippens.net/bashrc_and_others this is correct. 
    So, do I need to duplicate the aliases in /etc/profile so they are visible from login shells?  Or there is a way to define system-wide aliases for
    login and non-login shells?
    Thx.

Maybe you are looking for