Yosemite FileVault resizes application reopened windows after login

HI,
I have a weird behaviour of reopened application windows (Reopen windows when logging back in feature) after I switched on the FileVault disk encryption. I think that it could be due to the fact that login screen is in 1280x800 resolution and my set resolution is 1680x1050. FileVault has different login process, when I had it switched off I did not notice this issue.
Now when I log into the system I can see all application windows at the top left corner with the smaller screen size than the ones which have been when I shut down the computer.
I have MacBook PRO 2013 Retina, Yosemite OS X 10.10 (14A389)
Does anybody have the same issue?
Thanks a lot
Jiri

I am just seeing if anyone has a suggestion. The scenario is oddly similar. I had 2 drive in. First drive was being copied to second drive with Carbon Copy Cloner. First drive had some bad sectors and performance issues. Second drive wouldn't start up the system reliably, but the data was there. Installed a new drive, installed OS X 10.10.1. Everything runs great if I leave it there. Once I migrate the data from the 2nd drive in place, the loginwindow process slowly creeps up until 300 copies are running along with over 60 SecurityAgents. All memory is being used and the system is a challenge to work with (virtually impossible).
I am assuming a corrupt file is getting copied during the transfer, but I have no way to know what that file is. If it makes a difference, all loginwindow processes except "loginwindow console" are owned by root. "loginwindow console" is owned by my account as expected.

Similar Messages

  • Reopen windows on Login, broken.

    Hello,
    There's something wrong with the "Reopen windows at Login" function on my mac.
    We're using Mac OS X server, with mobility sync; so files are synchronised with the server etc, etc.
    On login, TextMate, Spotify, and a broken Messages instance all open up. There's nothing in the login items, and I've tried clearing the saved application states locally, and on the server. But nothing will reset them. Even when I uncheck "reopen at login", they still reopen!
    Anyone got any ideas why?

    This is for Lion, but the suggestions should still be valid.
    https://discussions.apple.com/message/17711289#17711289
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • How do I stop OSX Lion from reopen windows after logging in?

    Please advise.  This is aggrevating me.  Everytime I shut down my computer, I have to uncheck the box that states, Reopen windows after logging in.  I don't want to do this everytime I shut my computer down.  If I don't completely log out of every single application, when I start my computer and log-in, the programs I was using before I shut-down all come back up and sometimes this freezes my computer and I have to force shut down.  Any suggestions would be great.  Thank you.

    It is one of the over 250 new features of the World's Most Advanced Operating System called Resume.
    When choosing Restart, Sleep or Shutdown there is a checkbox you can uncheck to prevent the apps from launching.
    Also in System Preferences > General there is a hard-to-find checkbox under "Number of recent items" you can turn off.
    If you want to turn it off on a per app basis, (TextEdit is by example, replace TextEdit with the name of the app)
    Launch Terminal and copy/paste this at the prompt...
    defaults write com.apple.TextEdit NSQuitAlwaysKeepsWindows -bool false
    Press return.
    To turn off Resume globally...
    chflags uchg ~/Library/"Saved Application State"
    Press return
    The reverse of the first one is to replace false with true.
    The reverse of the second one is
    chflags nouchg ~/Library/"Saved Application State"

  • How to remove AppStore application from autorun after login in to system?

    I installed Yosemite (on clean disk) and now after login in to the system, it every time ask me about my credentials to AppStore and run Appstore application when I do enter apple login. What should I do for remove it from autorun?
    P.S. I do not see AppStore application in System Setting -> Users & Groups -> Login items.

    Thank you really much, it worked!
    Do you know how i could select all tables that are in text same time? There's over 700 tables in this file, so it will take some time to click them off one at time

  • I have an ipod touch 2 and rebuilt my laptop.  Reinstalled ITUNES and can't find my applications on ITunes after login.  I tried to activate Itunes again but it didn't.  How can I get my applications to display on ITUNEs?

    I have an Ipod Touch 2 and rebuilt my laptop.  Reinstalled ITUNES and can't find my applications on ITunes after login.  I tried to activate Itunes again but it didn't.  How can I get my applications to display on ITUNEs?

    It sounds like you essentially have a new computer and unless you restored from a backup your iTunes library would be empty.  You can transfer your iTunes purchases from your iPod to the computer by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    SInce you changed syncing computers. after you move the stuff you need to restore the iPod to factory defaults and sync the stuff back to your iPod.  If you had the iPod backup file you could restore from backup.
    If you have non-iTunes pruchases you can copy them to your computer by using one of the third-party programs discussed in this previous discussion:
    Best iPod to PC

  • How to Direct control to application's window after closing the popup?

    Hi,
    I am using 10.1.3. In my application I am unable to direct control to application's window after closing the popup, if I open any other window at the same time.
    For more info see the below step:-
    -> Open any popup in my application.
    -> Open any new window (lets say Google.com).
    -> Now restore popup on Google window.
    -> Now close popup
              - control goes to Google window but not the parent application window.
    How to direct control to the parent window?
    Can anybody help me regarding this?
    Thanx...Abhijit

    Hi Abhijit,
    You can do this using Javascript alone. Below are the two sample files I created.
    main.html_
    <html>
    <head>
      <title>Testing popup</title>
      <script type="text/javascript">
      function openPopup() {
        window.open("popup.html");
      </script>
    </head>
    <body>
      <a hr_ef="javascript:openPopup()">Open popup</a>
      <input id="something" name="something" type="text" value="something">
    </body>
    </html>
    Note: hr_ef should be href. The code tags are messing with the link.
    popup.html_
    <html>
    <head>
      <title>This is the popup window</title>
      <script type="text/javascript">
      function goToMain() {
        window.opener.something.focus();
      </script>
    </head>
    <body onunload="goToMain()">
      This is the popup window. Close this window to return to main window.
    </body>
    </html>The idea is to call a javascript function in the popup window that tries to focus on an object (eg. InputText) in the main html.
    Although, one point to take note is the naming of html objects by by these ADF UI Components. If you named your form id as "*form1*" and input text id as "*something*", your input text id will end up as "*form1:something*".
    Therefore, you will have to tweak the code above to the following:
    <script type="text/javascript">
    function goToMain() {
      window.opener.form1['form1:something'].focus();
    </script>Regards,
    Chan Kelwin

  • Resize Application/Title Window

    Below is the beginning code that is currently in place:
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="100%" height="100%">
    <mx:TitleWindow x="10" y="10" width="100%" height="100%"
    layout="absolute">
    It has some weird colors behind my application since it won't
    expand. Thank you in advance for responding!
    Cheers,
    Kimberly

    Hi,
    Try setting the X and Y properties of your TitleWindow to 0.
    Also set the cornerRadius of the TitleWindow to 0.
    Hope this helps.

  • Everytime i restart my macbook, it always opens all apps that i have closed before even though i have unticked not to reopen windows during login

    Every time i restart my mac, it always reloads the same apps that I have closed, even though before i shut down i have closed everything.
    Anyone got the solution?
    thanksss

    I have the same problem on my notebook but I don't restart. Just do the control, alt, delete and bring up your task manager. Then scroll down to Firefox, end process and close. Now you should be able to restart FF. Not a fix but better than having to restart your laptop.

  • Can I default the 'Reopen windows' flag to 'off'

    With Lion, a new logout option appears to 'Reopen windows at login.' It defaults to 'on,' meaning two clicks to exit if that is not your usual work flow. I thought there used to be an option to change the default, but it didn't work. Now, I can't even find that Preference, although I may just not be looking in the right places.
    Is there a way to not have to de-select this option every time I log out?
    Thanks,
    g

    If you want to permanently avoid having to uncheck the "Reopen windows when logging back in" checkbox at each shutdown, you may consider doing this:
    1. Close all apps you don't want to open at startup.
    2. Open your user Library folder. It is normally invisible, so press the Option key while selecting the "Go" menu in the Finder then select "Library" to open it.
    3. Use the Get Info dialog "Locked" checkbox to lock this plist file:
    ~/Library/Preferences/ByHost/com.apple.loginwindow.*.plist
    where "~" is your home folder and "*" is a sequence of characters (12 in my case). No need to lock the corresponding lockfile.
    This plist is where the System stores "reopen windows" info, so the System can't change/delete it if it is locked. This won't change the "Reopen windows..." checkbox setting, but that setting will no longer have any effect.

  • Unable to stop applications and windows reopening after reboot Yosemite

    I am wondering if my system became corrupted about a week ago after working well since upgrading to Yosemite when it was first released. When I reboot my system a number of applications open windows including Mail, iTunes, Excel, Adobe Reader, Calendar, Chrome, and VMWare. A window pops up asking for my iCloud password and it usually requires more than one attempt to enter the password before this disappears.
    I have searched online and tried all the usual remedies. I have selected "Close windows when quitting an app" under "Settings, General". I have ensured that these items do not appear under "Login items" in "Settings, Users & Groups". I have tried selecting and unselecting "Reopen windows when logging back in" on the "Restart badge" that appears when requesting restart.
    I also tried reinstalling Yosemite and later tried a "clean install" of Yosemite. In the latter case, I did restore my applications from Time Machine backup so it is not really a "fresh" system.
    Does anyone have any idea how to approach this problem short of doing a clean install of Yosemite and then reinstalling all my applications?

    I am wondering if my system became corrupted about a week ago after working well since upgrading to Yosemite when it was first released. When I reboot my system a number of applications open windows including Mail, iTunes, Excel, Adobe Reader, Calendar, Chrome, and VMWare. A window pops up asking for my iCloud password and it usually requires more than one attempt to enter the password before this disappears.
    I have searched online and tried all the usual remedies. I have selected "Close windows when quitting an app" under "Settings, General". I have ensured that these items do not appear under "Login items" in "Settings, Users & Groups". I have tried selecting and unselecting "Reopen windows when logging back in" on the "Restart badge" that appears when requesting restart.
    I also tried reinstalling Yosemite and later tried a "clean install" of Yosemite. In the latter case, I did restore my applications from Time Machine backup so it is not really a "fresh" system.
    Does anyone have any idea how to approach this problem short of doing a clean install of Yosemite and then reinstalling all my applications?

  • Certain applications re-open at login even after closing them

    Hi there esteemed support-forum users! Hopefully someone might be able to help me out with this before I resort to the Genius Bar.
    I'm running Lion on my new MBP (13" 2.7GHz i7 4GB, not that I think it matters) and have been impressed with the GUI improvements overall, and most of the features it offers. However, there are a couple of small niggles which are gradually escalating into annoyances.
    The first of which, is that on login I'm greeted with VLC, iTunes, and Safari all auto-running. I assumed this was due to Lion's 'reopen windows' feature, since none of them are in the 'login items' list on sysprefs. However, on restarting with the check-box for reopening windows turned off, they still appear. This regardless of whether I manually quit the applications first.
    Also, after these applications open there's a 30 second or so pause, before a Finder window opens up directed at a random folder inside the package contents of the Steam application. Similarly to the applications, this window appears even if I manually close it, turn off 'reopen windows', and restart.
    Any help greatly appreciated. Bit disappointed that there are problems this obvious with Lion (can't really use the "it's a brand new OS" excuse anymore).
    Cheers!

    Hi there,
    Thanks for the help. It didn't fix it: but I have since worked out what the problem was.
    As well as the login issues, Finder was consistently forgetting that I had changed my desktop background to something other than the Lion-galaxy. I had thought this was a different issue: but then I noticed that between logins it had also forgotten my Finder-side-bar rearrangement and some Firewall changes.
    I guessed such changes would be stored in the user library, and I had been having some problems with permissions previously. So I un-hid the User->Library folder and ran 'ACL Repair' on it. Sure enough everything now works smoothly. I hope!

  • After login close the login window and open home page in new window

    Hi guys,
    I want to go to a new window for the "home page" without browser back button etc. after login validation.
    And also close the login window at the same time.
    Here is the code I used after the login validation.
    ExtendedRenderKitService erks =Service.getRenderKitService(FacesContext.getCurrentInstance(),ExtendedRenderKitService.class);
    StringBuilder script = new StringBuilder();
    script.append(" params = 'width='+screen.availWidth-10;\n" +
    " params += ', height='+screen.availHeight-50;\n" +
    " params += ', top=0, left=0'\n" +
    " params += ', fullscreen=yes';\n" +
    " params += ', scrollbars=1';\n" +
    " params += ', resizable=1';\n" +
    " params += ', status=1';\n" +
    "window.close();\n" +
    " newwin=window.open('home.jspx','xxxxxxxxx', params);\n" +
    " if (window.focus) {newwin.focus()}");
    erks.addScript(FacesContext.getCurrentInstance(), script.toString());
    This successfully opens a new window. I want to close the current login window at the same time.
    Please help me with this.
    Regards !
    Sameera

    on the 'Submit' onclick event add some JavaScript code:
    this.form.target = '_blank';

  • Application Error - Impossible to login with windows client

    Hello all,
    We recently installed Primavera P6 v8.2 to replace Primavera P3.
    We Installed the database on a server (SQLEXPRESS) and we installed Primavera windows client on several computers and since this morning we have an access problem to the database trough these client.
    After login, this message appear:
    "Exception EAccessViolation in module PM.exe at 0043BFBF.
    Access violation at adress 0083BFBF in module 'PM.exe'. Read of address 00000381."
    We have created and worked on multiple projects for 2-3 weeks without problem before this morning.
    The fact is that we can login and access to the database and projects with the Web client.
    the problem is that we can't work with this web client. (to slow, to small ...)
    Does anyone already have this problem?
    Thank you very much in advance.

    You're not alone: Unable to login P6 R8.2 Professional Application
    Can someone submit an incident report?

  • Reopen Windows When Restarting Doesn't (Yosemite)

    When restarting an checkbox appears allowing open windows to be re-opened after restarting. This is a great idea, except that it does not do what it says. It allows open Applications to be re-opened after a restart, but not open Finder Windows. Is there a way to restore open Finder Windows after a restart?

    Just to record that I (and several other people I've seen with this problem) have the symptom Wayneswhirld describes without having apps set to 'Open at login' selected. I've created a StackExchange question describing the problem and suggested (but non-working) solutions I've found: http://apple.stackexchange.com/questions/39555/unchecking-restore-windows-when-q uitting-and-re-opening-apps-doesnt-work

  • Ios7 bookamrking web application to home screen via Safari crashes after login and when we try to open any link inside. Can anyone please tell me if there is any scheduled fix for this bug in safari?

    ios7 bookmarking web application to home screen via Safari, crashes after login and when we try to open any link inside from the icon that gets created on the home screen. Can anyone please tell me if there is any scheduled fix for this bug in safari?
    From what i understand i see that - Cookies are not transferred between your website and your webapp when installing the icon on the home screen (for authentication purposes for example). It was working until 6.1 and now it’s not working anymore.
    Can someone please tell me if this bug will be fixed in any future release, if so the ticket number of some kind that i can track, or if there is a workaround for this issue?

    ios7 bookmarking web application to home screen via Safari, crashes after login and when we try to open any link inside from the icon that gets created on the home screen. Can anyone please tell me if there is any scheduled fix for this bug in safari?
    From what i understand i see that - Cookies are not transferred between your website and your webapp when installing the icon on the home screen (for authentication purposes for example). It was working until 6.1 and now it’s not working anymore.
    Can someone please tell me if this bug will be fixed in any future release, if so the ticket number of some kind that i can track, or if there is a workaround for this issue?

Maybe you are looking for

  • Can't see new added columns in Report 6i

    Hi everyone, I have added new columns to my report, but when I print the report, those new columns are not printed in the paper. Can anyone please help me to solve this issue?

  • My I Mac has reset to factory settings!!!

    Can anyone explain what went wrong with my imac. For no obvious reason it asked me to enter the password it could have been when I downloaded the latest security patch. It wiped the desktop clean of all the folders and documents. It cleared i tunes l

  • Running samples not working...

    I could run these samples before, but now they do not work with the following error. Any idea why this is happening? I solved it once by deleting files in the temp directory, but now that does not work. Any ideas would be appreciated. Thanks, Ray MY

  • Opening any link causes location in current page to jump back to top of page.

    I have FF set to open all new windows in a new tab which was the default setting. Whenever I open a link, the new link will open in another tab, but on my current page/tab I will be transported back to the top of my current page/tab. You can imagine

  • Can't create Ringtone for iPhone

    everytime I click on the ringtone symbol next to the song I want, it says that I need to accept the iTunes Store Terms of Service and that by clicking 'OK' it will direct me to that. Thing is, I've already accepted that and when I click OK, it does n