How to keep default Finder window size and location from Mac server

Working in an office of three people.  Mac mini server (not sure of the OS; I think it's Snow Leopard).  We each use iMacs with Mavericks.  I have my default new Finder window set to open "customers" folder, which resides on the server, in a specific orientation.  If either of my co-workers opens "customers" and resizes that window on their machines, it retains that size & location when I open it again on my machine (as I'm sure it does to them after I "fix" my own window).
Is there any way to change this so that one's own machine will remember the window prefs?  I mean, we're not opening on the server itself, so in my mind it should not retain the last open position, right?
I know I could set my default folder to Home, then go to customers from the sidebar, but that almost defeats the purpose of the default folder.
thanks in advance!!

Hey Macdaddy,
This happens all the time with our server at work. The server window never opens in the same place twice, and it can be annoying.
There are third-party window management tools out there, but what I did was use a macro program called Keyboard Maestro (since I already owned it).
Among the many things Keyboard Maestro can do is manipulate a window. I created a macro that moves it to a specific point (in my case, the upper left corner of the screen) and then resizes it to a specific width and height in pixels. I then assigned the macro a keyboard shortcut.
Now, when I mount the server, I can use the keyboard shortcut and the window is right where I want it.
There are other programs that just move windows, and I tried a couple. But Keyboard Maestro is more elegant in my opinion, and it does a whole lot more if you choose to go that route.
Hope this helps.
Andy

Similar Messages

  • How to change Default Finder Windows Size?

    Hi all:
    New Finder windows show Macintosh HD and there is no problem in keeping the size or view options every time I open a new window (command + N).
    I can change "New Finder windows show" to another folder and works just as well.
    But when I open a folder in a new window (double click on an icon folder) the size of the window is very small and different from the window displayed by using command + N.
    Finder saves and applies default view options to all windows without a problem, but not the default size or in other words: 
    default windows size is different from new finder windows size.
    In Snow Leopard I could change default size of all windows holding down the Shift key while dragging and changing the size but in Mountain Lion it does not work.
    I have also deleted all files .DS_Store but neither works.
    I searched a lot but can not find a solution to this problem.
    Thanks.

    As far as New Finder Windows (command+N) are concerned, there's no problem.
    All other folder's Finder Windows I have not modified manually are displayed with the default size shown in the attached image. That is the window size that I want to modify.
    Thanks.

  • Finder window size and location not remembered

    I have OS X 10.10 installed.
    When I press Cmd/shift/H to open a finder window showing my home folder I get the default location and size for the window.  I resize and relocated the window and close it.  When I press that key combination again, the window is now showing the new size and location I previous set.  Unfortunately, when I restart the computer, this modification is lost and when I press that key combination the window opens with the default size and location.
    I have used the key combination of Cmd/Shift/A to open a finder window showing Applications and Cmd/Shift/U to open a finder window showing the Utilities folder.  I have been successful in resizing and relocating these windows, and having the system remember my modifications after a restart.  It appears to only be the Cmd/Shift/H combination that is faulty.
    Any ideas how to fix this problem?

    Paddster7,
    You could try trashing the hidden file 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 -> Move folder how you want to to stay -> Restart -> Did 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.
    Supporting Articles
    http://ianlunn.co.uk/articles/quickly-showhide-hidden-files-mac-os-x-mavericks/
    http://en.wikipedia.org/wiki/.DS_Store
    Hope that helps,
    Weston

  • AppleScript That Saves Finder Window Size and Location

    I wrote the following AppleScript to position and size Finder windows, but the Finder doesn't "remember" the settings the next time I open the windows.
    tell application "Finder"
    activate
    make new Finder window to disk "Hard Drive"
    set toolbar visible of Finder window 1 to false
    set current view of Finder window 1 to icon view
    clean up Finder window 1 by name
    set position of Finder window 1 to {30, 55}
    set bounds of Finder window 1 to {30, 55, 400, 625}
    make new Finder window to folder " Files" of disk "Hard Drive"
    set current view of Finder window 1 to icon view
    set toolbar visible of Finder window 1 to false
    clean up Finder window 1 by name
    set position of Finder window 1 to {410, 55}
    set bounds of Finder window 1 to {410, 55, 975, 455}
    close Finder window 1
    close Finder window 1
    end tell
    How do I make it so the Finder will remember the location and position?

    Hello
    Here is a script that I use daily.
    The code used to force the Finder to "remember" the window position seems a bit tricky. If I remember well I found it on MacScripter.
    As far as the Finder is not corrected, we must use this kind of trickery.
    --[SCRIPT]
    my commun(choose folder)
    on open (sel)
    my commun(sel's item 1)
    end open
    (* set bounds to {10, 50, 800, 600} *)
    on commun(F)
    set F to F as Unicode text
    tell application "Finder"
    if class of item F is document file then set F to (container of item F) as Unicode text
    if ((class of item F) is folder) then my set_bounds(F, {10, 50, 800, 600}, false)
    end tell
    end commun
    on set_bounds(F, b, toolbar)
    local ao, i, lesFichiers, fichier
    tell application "Finder" to tell folder F
    set lesFichiers to every file
    repeat with fichier in lesFichiers
    my saveImageWithItselfAsIcon(fichier as alias)
    end repeat
    tell container window
    set ao to class is Finder window
    open
    set current view to icon view
    set properties of its icon view options to ¬
    {arrangement:arranged by name, icon size:128}
    set bounds to b
    set toolbar visible to toolbar
    set toolbar visible to not toolbar
    set toolbar visible to toolbar
    if not ao then close
    end tell -- to container window
    repeat with i in (get folders)
    my set_bounds((i as alias), b, toolbar)
    end repeat
    end tell -- to folder F then to Finder
    end set_bounds
    on saveImageWithItselfAsIcon(F)
    tell application "Image Events"
    launch
    try
    tell (open F)
    try
    save with icon -- save iconimagefile with itself as icon
    end try
    close
    end tell
    end try
    end tell
    end saveImageWithItselfAsIcon
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE mardi 13 mars 2007 20:51:14)

  • Finder Window Sizes and View Options

    In an earlier message under Mac OS X Panther it was recommended that I post a new message in the AppleScript forum.
    I'm looking for a way to automate the repetitive task of resizing Finder windows and resetting view options. For example resetting a hundred folders to the same window size and screen position with the same view options. This requires manually adjusting each window one by one.
    A solution could be an AppleScript that would automate this task.
    The following is the earlier message:
    http://discussions.apple.com/message.jspa?messageID=1283081#1283081
    I mistakenly deleted all the preference files for the Finder window options on my 17 inch PowerBook (.DS_Store Files).
    This has returned all Finder windows to default settings for window sizes and view options.
    I use custom widow sizes for all my folders that nicely fit the 17 inch screen on my PowerBook, leaving enough desktop space on the right for the hard drive icons and the Dock that I always keep vertical on the right.
    I have a 12 inch PowerBook as well. And it has it's own custom window size that fits it's much smaller screen. It has always been a complaint of mine to have to manually reset windows whenever I needed to transfer folders with Bluetooth file exchange.
    Resetting Finder window sizes and view option has always been a time consuming problem. Now to have to do it over again for hundreds of windows is a huge task that is way to manual.
    The Finder is customizable. There must be a way to set the options for one window and be able to use those adjustments for other windows without having to re adjust each setting manually.
    There was an application called Finder Window Manager. Maybe someone knows of another application that can do this of task or another way around this issue.
    Photoscene
    Powerbook G4 17 inch   Mac OS X (10.4.3)   Tiger/Panther

    Photoscene,
    I think if you repost this to the AppleScript link, someone there will have a solution for you (in the form of an applescript that you can run)...
    http://discussions.apple.com/forum.jspa?forumID=724
    Give it a shot (I'm not clever enough to give you a good script yet, but someone there will be!)
    Bob

  • Finder windows size and position etc.  on clients' machines

    How to configure server's finder windows size and position etc. are on clients' machines so that they persist? Thank you!
    PS: If this has already been discussed, please refer to the thread. Sorry for double post in that case.

    Try connecting to the Share as the Server Admin, make your window the size and position you want and logout again.
    This information is stored in the .DS file.
    Message was edited by: Patrick Savelberg (Private)

  • How do I delete a Windows partition and resize the MAC HD partition to orig

    How do I delete a Windows partition and resize the MAC HD partition to original? I am new to Mac and created a very large Windows partition and need to delete it and get back. To make matters worse, I do not have a drive configured for Time Machine.
    Okay, I'm stupid and jumped the gun. but can anyone help this poor fool?
    Richard

    Okay, after lots of Google-ing, I finally decided to follow the ru - WAEFRTFI - and found the answer in the Boot Camp Installation Setup pdf on p. 22.
    Richard

  • What Preferences Control Window Size and Location?

    I have a number of windows that over time have taken on weird sizes and locations. For example, a print window habitually shows up with the print button underneath the dock, forcing me to move the window to click on the options.
    Is there a preference I can trash--or anything else I can do--to return the sizes and locations of windows to something resembling normal?

    That's done by each individual application.
    Many will remember where the window last was, and re-open it in the same place & size.
    Find the preference file for the app in question (probably in <your home folder>/Library/Preferences folder), quit the app, rename the file (append "old") to the end, and start the app again.
    The window should open in a default location; move/and or resize it, close the app and open it again. If that fixes the problem, trash the "old" file and re-enter any other preferences.
    If it doesn't fix it, you've probably got the wrong file. Close the app. If there's a new version of the file you renamed, delete it. Remove the "old" from the previous one.

  • How to keep alignment in Windows LARGE and SMALL fonts

    For years, I fought with LabVIEW, trying to keep things looking decent in both Windows LARGE and SMALL font sizes.
    By this, I mean Settings - Control Panels - Display - Settings - Advanced - General - Font Size
    I love to use large fonts - I run my display at 1600x1200 and it just looks better.
    But if you plop an indicator on a panel in LARGE fonts, save it, then open it with SMALL fonts in effect, it looks horrible.
    N.I. Doesn't care about this - just look at how ugly their own examples get when viewed in LARGE fonts.
    So I developed a method to make the bottom of the label text line up with the bottom of the numerical text, whether in LARGE fonts or SMALL.
    Click here for examples. Basically, I turn OFF the SIZE to TEXT attribute and right-justify the label (if on the left of the numeric).
    This works OK, except I have just discovered that it depends on the text being the default size.
    If I have a 17-pt numeric with a 17-point label, then they both appear as 13-pt when I switch to SMALL fonts - great -- they're still aligned.
    But if I have a 17-point numeric with a 16-pt label, when I switch to SMALL, the numeric shrinks to 13, but the label stays at 16, and is thus vertically misaligned with the numeric.
    So how can I have a 17-pt numeric with a 13-pt label, and have them BOTH shrink when I switch to SMALL fonts?
    I suppose I could use property nodes, and detect the switch myself, but I have 50+ of these on a single VI to do - that would be ugly to watch the labels jumping around.
    I suppose I could have two VIs - one for LARGE fonts and one for SMALL, but I don't want to duplicate th
    e code.
    Any other ideas?
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

    It is true that we don't have a
    solution.  It isn't that we don't care, but the solution choices stink.
    Well, I'll stand by my opinion that N.I. doesn't care - when using the default app font, there *-IS-* a solution - the link in my original post points to a page that I show my employees on how to solve the problem. It is solvable, for the case of using the default font and size. Yet N.I. uses the default font and size, but LOOK HOW THEIR EXAMPLES APPEAR (see attached files). This is how the example software looks, out of the box. These are not ancient examples, either.
    It is NOT my opinion that, because there apparently is no solution for non-standard sizes, the stuff looking ugly is NI's fault.
    But when a solution DOES exist for standard sizes, why they don't apply it is beyond me. Even some of the LabVIEW dialogs suffer from this.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks
    Attachments:
    ChartsPict.png ‏22 KB
    MenusPict.png ‏15 KB
    GraphPicts.png ‏31 KB

  • How do you save main window size and placement upon boot-up?

    Is there any way for a dual-monitor user to convince InDesign to remember the size and shape of the main window when I boot up?  I use InDesign on my second monitor, which I have rotated to portrait mode.  The workspace I have saved remembers all of my menues and panels, but the main window always shows up on my main monitor.  InDesign 5 remembered....
    Also, how do you permanently turn off that damn "getting started" window?
    Thanks.

    I'm guessing your on a Mac with a recent version of Mac OS X. Am I correct?
    You'll have the best luck having InDesign remember your window size if you choose Window > Application Frame. Then resize the frame to the size you prefer. It should stick.
    People have found bugs with windows on a secondary monitor if they're using Mac OS X 10.10.2. If you're running 10.10.3 it should solve that problem.
    To get rid of the Getting Started window, scroll to the bottom of most tabs, and choose not show the window again by checking a checkbox.

  • My new Firefox ver 29 always starts maximized how do i set the window size and not maximized?

    I had reinstall my Windows 7 (win 7 pro 64bit)
    so i had to reinstall firefox as well, installed ver 27 and updated it to version 29
    now when i start firefox it will start maximized and i want to set the window size when it starts,
    why the size of the window will not change and it will start maximized all the time?

    # In Firefox, type ''about:support'' into the address bar and press Enter.
    # Click the Show Folder button. A Windows Explorer window opens.
    # Right-click the Firefox taskbar icon and choose either Close All Windows or Close Window.
    # In the Windows Explorer window that opened earlier, delete the ''localstore.rdf'' file.
    # If you have Firefox pinned to the taskbar, right-click the taskbar icon, then right-click the Firefox icon in the menu that pops up and choose Properties.
    #* If you have a desktop shortcut, simply right-click it and choose Properties.
    # Click the Shortcut tab in the Properties window.
    # Make sure Run is set to "Normal window".

  • Uninstall windows xp and parallel from mac

    HI,
    I have parallels and windows xp installed on my mac.
    How do I completely uninstall xp and then completely uninstall parallel?
    I have been using it for a month now and think it's pretty poor - so I'm going to change to boot camp as it seems like a bit of a safer option for when doing important university work.
    Thanks

    Before you uninstall anything, do some more research. It seem to remember reading somewhere that there was a method of installing boot camp and transferring Windows XP from the Parallels folder.
    You may also want to consider how much RAM you have to support Windows in Parallels.

  • How to set default max cache size in win 2003 terminal server

    Hi! I have a win 2003 terminal server, with 50+ user accounts, the problem is that the cache for firefox is never cleared, how do I set a apropriate (ie 50MB) max cache size for all users? As it is today, I have certain users with several millions of cahe files, which slows everything down.
    firefox is 8.01 English version.

    Hey Macdaddy,
    This happens all the time with our server at work. The server window never opens in the same place twice, and it can be annoying.
    There are third-party window management tools out there, but what I did was use a macro program called Keyboard Maestro (since I already owned it).
    Among the many things Keyboard Maestro can do is manipulate a window. I created a macro that moves it to a specific point (in my case, the upper left corner of the screen) and then resizes it to a specific width and height in pixels. I then assigned the macro a keyboard shortcut.
    Now, when I mount the server, I can use the keyboard shortcut and the window is right where I want it.
    There are other programs that just move windows, and I tried a couple. But Keyboard Maestro is more elegant in my opinion, and it does a whole lot more if you choose to go that route.
    Hope this helps.
    Andy

  • Set finder window size default

    How can I set the default finder window size?  I've got a new iMac and the finder window always opens small.  I want it a lot bigger.  Interestingly, on my wife's old iMAc and my MBA (both running OS X 10.8.3, same as new iMac) the finder windows open to a much bigger size. 

    it seems Finder opens to Applications.  Sometimes the folder is the  same size as the as the last one I closed.  Other times it is tiny.  I can't seem to spy a pattern.

  • How can I customize window size and have it stay that way? It automatically maximizes the moment I click anywhere on the page.

    I have added a large widescreen monitor and now have a two-screen set up. This taxed my old video card, so we replaced that, too. Then I updated Firefox. Now my window automatically maximizes. "Restore" is the same size as "Maximize", and I can resize it if I carefully drag and drop all four corners. But if I click on the top bar to relocate the resized window, it re-maximizes. I can't find any options or settings that allow me to fix the window size, lock a customized window size, etc. IE8 is not doing this, so I don't think it's the monitor or desktop settings.

    Window sizes and positions are stored in [http://kb.mozillazine.org/localstore.rdf localstore.rdf] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder].<br />
    <br />
    Delete localstore.rdf or rename the file to localstore.rdf.sav in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] to test if the file is corrupted.<br />
    See http://kb.mozillazine.org/Corrupt_localstore.rdf<br />
    (caution: do not delete the localstore.rdf file in the Firefox program installation folder)<br />
    <br />
    Note:<br />
    Deleting the file [http://kb.mozillazine.org/localstore.rdf localstore.rdf] will reset the customizations of the toolbars to the defaults.<br />
    You can rename "localstore.rdf" to "localstore.rdf.sav" to test if that solves it.<br />
    Then you can restore the customization by copying "localstore.rdf.sav" to "localstore.rdf" if it didn't work.

Maybe you are looking for

  • Error in emagent.trc

    Hi got error in emagent.trc 2010-03-05 15:27:38,062 Thread-1900551 ERROR pingManager: nmepm_pingReposURL: Cannot connect to https://192.168.21.243:1159/em/upload: retStatus=-1 2010-03-05 15:27:38,104 Thread-1900551 ERROR ssl: 9: Common Name = "localh

  • Problem with sending large HTML files as attachment using JavaMail 1.2

    Hi dear fellows, i am currently working on posting Emails with attachments using JavaMail 1.2. i succeeded in sending many mimetypes of files as attachments except for .htm and .html files. when large HTML files (say, >100 kB) serve as attachements,

  • External hdmi 1080i vs 1080p

    1) try as I might, the MBA only gives choices up to 1920x1080 (interlaced) and does not give an option for 1080p on an external monitor. 2) is there a published specification for the MBA which specifically states that 1080p is NOT available? Everythi

  • Xephyr problem with awesome3

    Hi, I try to run this nice thing. http://wiki.archlinux.org/index.php/Awe - ing_Xephyr But all I get is a black screen (rc_test.lua is working) and some errors: ╭─[thomas::Heraklit] ╰─[9:36]> Xephyr -ac -br -noreset -screen 1152x720 :1 & DISPLAY=:1.0

  • Thunderbolt DaisyChain Woes

    I have a late 2012 iMac and late 2012 Mac Mini, both with Thunderbolt. I'd like to use the iMac as a display for the Mini, no problem (CMD+F2) when linked directly together via Thunderbolt. The problem here is that I have a bunch of Thunderbolt drive