Finder opens small window

Every time I open the Finder, it opens in a very small window which I then have to widen. I close it, re-open it, and it's the small window again. Every time.
Is there any way to get the Finder to open in a larger window, the size I closed it in?

Roger Barre,
If its only one folder, You could try trashing the hidden file ( .DS_Store ) inside the folder that stores some of its positioning and size settings.
To show your hidden files.
Launch ( Terminal ) > Paste in the following ( defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder ) > Press Return.
Open the ( Offending Folder ) > Delete ( .DS_Store ) > Restart > Resize folder how you want to to stay > Restart > Does it stay?
To reverse your hidden files back to hidden.
Launch ( Terminal ) > Paste in the following ( defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder ) > Press Return.
or You could trash all the hidden ( .DS_Store ) files on your Mac. If its multiple folders in Finder.
Launch ( Terminal ) > Paste in the following ( sudo find / -name ".DS_Store" -delete ) > Press Return. > Type in your administrator password. It will look like it isn't typing when you type in your password. Also it won't look like it is doing anything for awhile while it is running please be patient. It probably will tell you that /dev/... and /dev/... are not a directory, this is ok > Restart your Mac. Don't just log off then back on. > After your Mac restarts change the view settings the way you would like and test to see if it remembers them.
This command will delete all the .DS_Store files on your Mac so any positioning and sizing set in all Finder windows will have to be reset. Also its a good idea to repair your disk permissions afterwards.
Hope that helps,
westongallagher

Similar Messages

  • Finder opens up windows on restart -- I know why, but I want it to stop

    So Finder remembers what windows you have open when you close down the computer. I don't want that. I also don't want to have to close all of the Finder windows when I want to shut down, either. I just want a blank screen when I start the computer up without having to add any steps to my own personal shut down process. Anyone have any idea how to do this? Thanks.

    Open the AppleScript Editor. Type in the following:
    tell application "Finder"
    close windows
    end tell
    Save as an application, making sure that 'Run only', 'Startup screen' and 'Stay open' are not checked. Place this anywhere convenient.
    Now go to System Preferences>Accounts>Login Items. Click the '+' button and navigate to your script; add it to the list. Now it will run on startup and close any open windows.

  • Finder opened multiple windows and now will not respond.

    I was importing music from back up disks onto my new iMac and when I clicked into a folder in my iTunes Music folder finder opened all the band's (maybe 30 total) folders and now Finder is not responding at all. I have tried a relaunch, I have tried force quit, I have even hard restarted using the power on/off button as choosing power down from the apple menu is not working. I can not access the library folder to make any changes to files located within it. I'm unsure of where else to go from here. It's been almost 5 years since I've owned a computer at all and I've never encountered this issue.

    Hi Colin,  I was hopeful this might work, but no joy at all.  Tried it several times, including after a restart.  Still the same problem.  I get window with 2 options, Restore windows/Do not restore windows.  Irrespective of which one I choose, mail tries to open properly and then crashes.  I see my mail window, with all my folders, it attempts to restore the mobileme folder, then crashes.  Thanks for the suggestion anyway.  I have moved across to Postbox until a fix is found.

  • Why does finder open multiple windows in preview if I ask for several photos to view?

    When I ask finder to open a list of photos in Preview it will open some of them in one window and some of them in another window. How do I fix this? It should open them all in one window.

    I was trying to open the photos in Preview from Finder. I just tried it directly from Preview. It works correctly that way.

  • Finder opening new Windows despite always open in new Tabs setting.

    I have already submitted this to Apple. But wish to open a discussion here, to probe and see, if this issue frustrates other users. It would be nice to get some empirical weight behind my already submitted request.
    The Issue: I have already set in Finder »always open in new tabs«. Despite this, when for example one clicks on »view Download in Finder« (Safari), or via a Spotlight-search clicks CMD+R to view a search-result in Finder, a new Finder-Window gets launched. This is really frustrating and quickly clutters up the desktop. Could Apple please fix this, so that »always open in a new tab« really does just this? (Or at the very least, opens a new tab in the last opened Finder-window).
    The same irritation ist true for Terminal. I just wished users would be have the option to open everything in the same (e.g. the last opened) window.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Why is Finder opening new windows every time I drag a photo onto the desktop?

    I've been having a couple of issues with my desktop (I am running 10.7.5):
    1. When I save a photo by dragging it onto my desktop, it opens a new Finder window. It's only started doing this today, and I haven't changed any of my Preferences. How can I turn this function off?
    2. I used to be able to drag a photo from my web browser to my desktop to save it. When it saved, it would stay where it was dragged. However, about a month ago, the files began snapping into rows rather than where I dragged them as well as piling up in the upper right-hand corner of the screen. How can I fix this so that they stay whereever I drag them when saving?
    Thanks!

    It's a bug in Chrome.

  • Open small window onclick

    Hey guys, me again
    I have launched my website, and it´s going pretty good even without a welcome party yet. i have to add some events to it and i have a problem.
    I have a banner on which i want it , when clicking on it, for it to open a new window with the flyer, but i want the window to be the same same of it.
    Can you guys help me with the code for it? And where in the html code would it go ?
    Thank you,
    Luis

    Your visitors will hate you This is your target page; link your banner to it----    You will also need this remote javascript (save this code as resizer.js) function resizeWin(maxX,maxY,speed,delay,win){     this.obj = "resizeWin" + (resizeWin.count++);     eval(this.obj + "=this");     if (!win)     this.win = self;    else this.win = eval(win);     if (!maxX)    this.maxX = 600;    else this.maxX = maxX;     if (!maxY)    this.maxY = 375;    else this.maxY = maxY;     if (!speed)   this.speed = 1/5;   else this.speed = 1/speed;     if (!delay)   this.delay = 0;    else this.delay = delay;     this.doResize = (document.all || document.getElementById);     this.stayCentered = false;     this.initWin =     function(){         if (this.doResize){             this.resizeMe();             }         else {             this.win.resizeTo(this.maxX + 10, this.maxY - 20);             }         }     this.resizeMe = function(){         this.win.focus();         this.updateMe();         }     this.resizeTo = function(x,y){         this.maxX = x;         this.maxY = y;         this.resizeMe();         }     this.stayCentered = function(){         this.stayCentered = true;         }     this.updateMe = function(){         this.resizing = true;         var x = Math.ceil((this.maxX - this.getX()) * this.speed);         var y = Math.ceil((this.maxY - this.getY()) * this.speed);         if (x == 0 && this.getX() != this.maxX) {             if (this.getX() > this.maxX) x = -1;             else  x = 1;             }         if (y == 0 && this.getY() != this.maxY){             if (this.getY() > this.maxY) y = -1;             else y = 1;             }         if (x == 0 && y == 0) {             this.resizing = false;             }         else {             this.win.top.resizeBy(parseInt(x),parseInt(y));             if (this.stayCentered == true) this.win.moveTo((screen.width - this.getX()) / 2,(screen.height - this.getY()) / 2);             setTimeout(this.obj + '.updateMe()',this.delay)             }         }     this.write =  function(text){         if (document.all && this.win.document.all["coords"]) this.win.document.all["coords"].innerHTML = text;         else if (document.getElementById && this.win.document.getElementById("coords")) this.win.document.getElementById("coords").innerHTML = text;         }     this.getX =  function(){         if (document.all) return (this.win.top.document.body.clientWidth + 10)         else if (document.getElementById)             return this.win.top.outerWidth;         else return this.win.top.outerWidth - 12;     }     this.getY = function(){         if (document.all) return (this.win.top.document.body.clientHeight + 29)         else if (document.getElementById)             return this.win.top.outerHeight;         else return this.win.top.outerHeight - 31;     }     this.onResize =  function(){         if (this.doResize){             if (!this.resizing) this.resizeMe();             }         }     return this; } resizeWin.count = 0;

  • One of my bookmarks only opens in a small window & can't be maximized

    for some reason when I click on my YouTube channel now in my bookmarks, it only opens in a small window to the left & can’t be maximized, nor can I see the address on the top, if I open a new tab & click on any other bookmark it goes to that website, if I copy/paste my channel it goes to it, but if I open another tab & click on my bookmark for the channel & copy/paste again it closes 1 tab.
    Also, it also looks like you can only have about 10 visible bookmarks in the unsorted area (unlike favorites in IE, where you can have a very long list including folders, & if its too long for the window you just go to the bottom & hover on the bottom arrow & it auto scrolls until you find the website).

    You're welcome

  • ITunes Small window at opening

    Hello.
    (Sorry, for my English, I'm French).
    When I open iTunes, it open in a small window (reduced).
    So I need to click for extend the window.
    I know, it's not a important problem, but I find it enervating...
    Do you have an idea for have iTunes extended at the opening?
    Thanks in advance.

    That seems to have fixed it!
    The first time I quit and restarted iTunes, the tutorial window did come up again without a Show at startup box near the bottom. I thought your suggestion hadn't worked so I quit iTunes again. Then, upon a second restart, the tutorial window didn't show up at all. So I guess it is fixed then. No window at all was ultimately what I wanted.

  • Since upgrade to 3.6.7 the emoticons window on a forum I use always opens full screen, not as a small window. How can I get it to open as a small screen again.

    Since upgrading to 3.6.7, when I go to a forum I'm active on and click the emoticons icon in the reply box, the emoticons window opens full screen, and not as a small screen like it did before. I can click on the box to make it small again, but next time I open it, it's back to full screen. Ok, not a major problem, but really rather annoying. I've tried to find a way to get it back to opening the way it did before, but to no avail. Does anyone know how I can solve this little problem?
    == I upgraded to 3.6.7

    No-one got any ideas on this then? It's definitely a firefox problem, as when I open the forum page (mentioned in the OP) with Opera or Chrome, the emoticons window opens as a small window, same as FF used to before the upgrade.

  • How can I stop from second window opening small in Safari and browser bar floating in and out like the dock?

    Every so often I will click on a link in safari and it opens a second window. It opens it  small. I can click the two diagonal arrow in the upper right hand corner and go to full view but then the browser bar at th top and all  the Safari stuff like file, edit, view, history etc float up out of site. Much like the disappearing dock I can get it come back by going up by it. This is very frustrating. I have fixed it in the past but each time it is very difficult to find out how to do it. First why does this start happening? and if it does how can I get it to go back to the normal way? I will then bookmark the answer so I will be able to fix it quickly if it happens again.

    I may not have called things the proper name. I am re-wording this now. Hopefully this makes it clearer.
    Every so often,(3 times in 4 months), I will click on a web site and a new window will open much smaller than the standard window. I can enlarge the window by click the two arrows in the upper right hand corner but the menu bar disappears and reappears if you hover over it. I tried what some said above and when the window was small dragged it to the same size as the window under it, menu bars all visible. I closed that window and reopened it and it opened small again. I can go for several weeks and all additional windows open the correct size and with menus visible, then it goes into this mode. Everything running Lion 10.7.2 and Sarafi 5.1.1    
    I straightened it out one time or got it to stop doing that but don't remember how I did it. My husband fixed it the second time and he isn't around today. Anyone able to help?

  • I am having a problem with pop pups and small windows with ads constantly opening up on my safari?? Thought that macs didn't get virus? this looks like one- any experts around? please help me fix it with your instructions? really don't know what to do...

    Hi everyone,
    I am having a problem with my Mac OS X 10.7.5 mac book air , there are constant pop pups and small windows with ads blinking constantly opening up on my safari in front of everything?? it is constantly interupting me and makes me mistakingly click on it then another new windows open behind the one im using..
    I am not too sure if thats a virus or trojan.. I always thought that macs didn't get virus? this looks like one to me… any experts around? please help me fix it with your instructions? really don't know what to do... thanks

    Those are not viruses. You have probably installed some malware:
    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • Could you please add to the smaller windows in mission control the icons to the open applications

    Please Apple add this feature.  I loved spaces and could see in the open windows better to know where I'm going.  Just add the icons to the small windows and that should take care of the problem.  I'm getting lost because I'm not sure which the application is in what window.

    Apple don't read these forums, they're for user-to-user only.  You want:
    http://www.apple.com/feedback/macosx.html

  • Finder always opens new windows

    Finder always opens new windows for me. It didn't used to do this (its been doing it at least since I was using 10.5.6), and "Preferences > Always open folders in a new window" is not checked. Any ideas?

    JRokeach,
    Sorry if this sounds to simple, I'm hoping that it is, but in a finder window do you have the toolbar showing? Because if you don't it will open all the folders in there own windows. To fix there is a little button in the top right that hides the toolbar, also if you goto view hide toolbar it will do the same.
    If that isn't the case try removing the com.apple.finder.plist found in Macintosh HD -> Users -> YOUR USER -> Library -> Preferences, and trashing it.
    Hope that helps,
    Weston

  • I'm trying to export a raw image from lightroom 5.6 to Photoshop cc 2014 2.1.  I right click to export menu in lightroom as I've always done to export to Photoshop.  Photoshop opens, but it can't open file, window opens to find a file to open.  I'd like t

    I'm trying to export a raw image from lightroom 5.6 to Photoshop cc 2014 2.1.  I right click to export menu in lightroom as I've always done to export to Photoshop.  Photoshop opens, but it can't open file, window opens to find a file to open.  I'd like this to export my lightroom images to edit in photoshop as it has always been able to do for me.  What fix do you recommend?

    Hi Ashley Clavette,
    The Initial view setting works perfectly when the file is opened in Acrobat after setting the desired Initial View.
    When you upload the file onto Wordpress, and view it on that website in the browser...it might be using a different pdf handler program which might be causing this issue ( it would be helpful, if you could provide the screenshot) , however when you download the pdf again from wordpress server...and open in Acrobat/Reader...then what  exactly happens ?  Does the pdf opens in the desired Initial View setting?
    Rahul

Maybe you are looking for

  • My boss needs to share his calendar with me. How can we do it without buying more hardware?

    So my boss has tons of mac stuff, iPhone, macbook, iPad, etc and he has dozens of calendars all synchronized between them with iCloud. He needs to share them with me. I signed up for an iCloud account, but it says: "To sign in with this account, use

  • Invalid objects after upgrade 8.1.7 to 9.2.0.6

    I upgraded the database from 8.0.5 under EBS 11.0.3 to 8.1.7 then from 8.1.7 to 9.2.0.6 under EBS 11.5.10.2 in front of try to compile objects with utlrp, utlrcmp or compile i can't make these objects valid! can any one help me please? my invalids ob

  • What's wrong with my lenovo T400 screen?

    My T400 ,1440x900, brought 2 years ago. The screen became shaking and resolution became horrible. On the top of the screen. there is a bright line. Since the warrant is already expired, how can I repair it?

  • I'm a newbee at Mediaencoder, what can I do after encoding??

    I want to burn a 20 min video on Blu Ray, but whatever I use as codec, nothing seems to be accepted in my BR player... Encoded with H.264, MPEG2, MPEG4 and others.....

  • Use a variable as a table name with NATIVE SQL

    Hi all, I am trying to execute a SELECT statement in order to fetch data from an external Oracle DB table to SAP with the following instructions: EXEC SQL.   SELECT cityfrom, cityto          INTO STRUCTURE :wa          FROM spfli          WHERE mandt