Why iPhoto to update when I El Capitan?

Why the App Store tells me to download iPhoto 9.6.1 when I Photos.app in El Capitan? When I try to download, it is said that it is not available in the Mac App Store US.

If you no longer we iPHoto and then delete form the applications folder and these messages update stops

LN

Tags: iLife

Similar Questions

  • Why is not updated when you create or whole part of delete trigger?

    Hey there ' All,.

    I have a Page with links. These bindings are based on components business ADF, pretty standard stuff. On this page, I have an af:panelCollection. It contains buttons to create, remove, commit, and roll back. All those assigned to their respective shares in the ADF business components-based binding. In this collection of Panel there is also an editable table. It was created by dragging the view from business components in the collection of panels. ADF automatically created the iterator in the definition of the page.

    It is the source of the fragment:

    <?xml version='1.0' encoding='UTF-8'?>
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                    xmlns:f="http://java.sun.com/jsf/core">
      <af:panelGridLayout id="pgl1">
        <af:gridRow marginTop="5px" height="100%" marginBottom="5px" id="gr4">
          <af:gridCell marginStart="5px" width="60%" id="gc5" halign="stretch" valign="stretch">
            <af:panelCollection id="pc1" featuresOff="detachMenuItem" partialTriggers="b_new b_delete b_save b_restore">
              <f:facet name="menus"/>
              <f:facet name="toolbar">
                <af:toolbar id="t2">
                  <af:button actionListener="#{bindings.Create.execute}" text="New" disabled="#{!bindings.Create.enabled}"
                             id="b_new"/>
                  <af:button actionListener="#{bindings.Delete.execute}" text="Delete"
                             disabled="#{!bindings.Delete.enabled}" id="b_delete"/>
                </af:toolbar>
                <af:toolbar id="t3">
                  <af:button actionListener="#{bindings.Commit.execute}" text="Save" disabled="#{!bindings.Commit.enabled}"
                             id="b_save"/>
                  <af:button actionListener="#{bindings.Rollback.execute}" text="Restore"
                             disabled="#{!bindings.Rollback.enabled}" immediate="true" id="b_restore">
                    <af:resetActionListener/>
                  </af:button>
                </af:toolbar>
              </f:facet>
              <af:table value="#{bindings.PermissionView1.collectionModel}" var="row"
                        rows="#{bindings.PermissionView1.rangeSize}"
                        emptyText="#{bindings.PermissionView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        rowBandingInterval="0" selectedRowKeys="#{bindings.PermissionView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.PermissionView1.collectionModel.makeCurrent}" rowSelection="single"
                        fetchSize="#{bindings.PermissionView1.rangeSize}" id="t1" filterVisible="true" immediate="true"
                        contentDelivery="immediate" summary="Edit available permissions">
                <af:column sortProperty="#{bindings.PermissionView1.hints.IdPermission.name}" sortable="true"
                           headerText="ID" id="c1" width="32" filterable="true" minimumWidth="22">
                  <af:inputText value="#{row.bindings.IdPermission.inputValue}"
                                label="#{bindings.PermissionView1.hints.IdPermission.label}"
                                required="#{bindings.PermissionView1.hints.IdPermission.mandatory}"
                                columns="#{bindings.PermissionView1.hints.IdPermission.displayWidth}"
                                maximumLength="#{bindings.PermissionView1.hints.IdPermission.precision}"
                                shortDesc="#{bindings.PermissionView1.hints.IdPermission.tooltip}" id="it1">
                    <f:validator binding="#{row.bindings.IdPermission.validator}"/>
                    <af:convertNumber groupingUsed="false" pattern="#{bindings.PermissionView1.hints.IdPermission.format}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="#{bindings.PermissionView1.hints.Designation.name}" sortable="true"
                           headerText="Designation" id="c2" width="221" filterable="true">
                  <af:inputText value="#{row.bindings.Designation.inputValue}"
                                label="#{bindings.PermissionView1.hints.Designation.label}"
                                required="#{bindings.PermissionView1.hints.Designation.mandatory}"
                                columns="#{bindings.PermissionView1.hints.Designation.displayWidth}"
                                maximumLength="#{bindings.PermissionView1.hints.Designation.precision}"
                                shortDesc="#{bindings.PermissionView1.hints.Designation.tooltip}" id="it2"
                                attributeChangeListener="#{bindings.Commit.execute}">
                    <f:validator binding="#{row.bindings.Designation.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="#{bindings.PermissionView1.hints.Description.name}" headerText="Description"
                           id="c3" width="432">
                  <af:inputText value="#{row.bindings.Description.inputValue}"
                                label="#{bindings.PermissionView1.hints.Description.label}"
                                required="#{bindings.PermissionView1.hints.Description.mandatory}"
                                columns="#{bindings.PermissionView1.hints.Description.displayWidth}"
                                maximumLength="#{bindings.PermissionView1.hints.Description.precision}"
                                shortDesc="#{bindings.PermissionView1.hints.Description.tooltip}" id="it3" rows="3"
                                attributeChangeListener="#{bindings.Commit.execute}">
                    <f:validator binding="#{row.bindings.Description.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
              <f:facet name="statusbar"/>
            </af:panelCollection>
          </af:gridCell>
          <af:gridCell marginStart="5px" width="40%" marginEnd="5px" id="gc6" halign="stretch" valign="stretch">
            <af:panelAccordion discloseMany="false" id="pa1">
              <af:showDetailItem id="pane_roles" text="Users" inlineStyle="overflow:scroll;">
                <af:region value="#{bindings.assignusers1.regionModel}" id="r1"/>
              </af:showDetailItem>
              <af:showDetailItem id="pane_permissions" text="Usergroups" inlineStyle="overflow:scroll;">
                <af:region value="#{bindings.assignusergroups1.regionModel}" id="r2"/>
              </af:showDetailItem>
              <af:showDetailItem id="pane_groups" text="Roles" inlineStyle="overflow:scroll;">
                <af:region value="#{bindings.assignroles1.regionModel}" id="r3"/>
              </af:showDetailItem>
            </af:panelAccordion>
          </af:gridCell>
        </af:gridRow>
      </af:panelGridLayout>
    </ui:composition>
    
    

    It's the source of the definition of the page of the fragment:

    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="12.1.3.10.8" id="PermissionViewEditPageDef"
                    Package="fragments.permission">
      <parameters/>
      <executables>
        <variableIterator id="variables"/>
        <iterator Binds="PermissionView1" RangeSize="25" DataControl="AdminPanelModuleDataControl"
                  id="PermissionView1Iterator" Refresh="default"/>
        <taskFlow id="assignusers1" taskFlowId="/WEB-INF/taskflow/permission/assign-users.xml#assign-users" xmlns="http://xmlns.oracle.com/adf/controller/binding" Refresh="ifNeeded">
          <parameters>
            <parameter id="permissionID" value="#{bindings.IdPermission.inputValue}"/>
          </parameters>
        </taskFlow>
        <taskFlow id="assignusergroups1" taskFlowId="/WEB-INF/taskflow/permission/assign-usergroups.xml#assign-usergroups" xmlns="http://xmlns.oracle.com/adf/controller/binding" Refresh="ifNeeded">
          <parameters>
            <parameter id="permissionID" value="#{bindings.IdPermission.inputValue}"/>
          </parameters>
        </taskFlow>
        <taskFlow id="assignroles1" taskFlowId="/WEB-INF/taskflow/permission/assign-roles.xml#assign-roles" xmlns="http://xmlns.oracle.com/adf/controller/binding" Refresh="ifNeeded">
          <parameters>
            <parameter id="permissionID" value="#{bindings.IdPermission.inputValue}"/>
          </parameters>
        </taskFlow>
      </executables>
      <bindings>
        <action IterBinding="PermissionView1Iterator" id="removeRowWithKey" RequiresUpdateModel="false"
                Action="removeRowWithKey">
          <NamedData NDName="rowKey" NDValue="#{}" NDType="java.lang.String"/>
        </action>
        <action IterBinding="PermissionView1Iterator" id="Delete" RequiresUpdateModel="false" Action="removeCurrentRow"/>
        <tree IterBinding="PermissionView1Iterator" id="PermissionView1">
          <nodeDefinition DefName="de.lkvsh.shirotest.admin.model.ev.PermissionView" Name="PermissionView10">
            <AttrNames>
              <Item Value="IdPermission"/>
              <Item Value="Designation"/>
              <Item Value="Description"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
        <action IterBinding="PermissionView1Iterator" id="Create" RequiresUpdateModel="true" Action="createRow"/>
        <action id="Commit" RequiresUpdateModel="true" Action="commitTransaction"
                DataControl="AdminPanelModuleDataControl"/>
        <action id="Rollback" RequiresUpdateModel="false" Action="rollbackTransaction"
                DataControl="AdminPanelModuleDataControl"/>
        <attributeValues IterBinding="PermissionView1Iterator" id="IdPermission">
          <AttrNames>
            <Item Value="IdPermission"/>
          </AttrNames>
        </attributeValues>
      </bindings>
    </pageDefinition>
    
    

    For the facts so far.

    Now, my experience with it:

    Whenever I click on the 'New' or 'Delete' button, it first calls the partial relaxation and then perform the action assigned to the button I clicked. I thought this because of the following behaviour:

    1. I load the page

    2. I click on the 'New' button - nothing happens

    3. I click on the button "New" once again - a single line appears

    4. I click on the button 'Delete' - nothing happens, still a line it

    5. I click on delete - disappearance of the line

    In order to engage without an error in database fields, that I need:

    1. load the page

    2. click on the button "new".

    3. click again on the button "new".

    4. click on the button Delete

    5. fill the new line

    6 validation

    What I tried:

    1. triggers, of course, I thought that business components and links stuff would be here to refresh everything about an action.

    2. I also tried in the PageDef not caching the results of the underlying iterator from the table. However, this only leads to an exception during step 3 of my 'to be able to commit without a basic error of data fields that I".

    I hope you can tell me what is the problem or you have any suggestions or advice.

    Thanks in advance

    Lukas Wagner

    You should always use CreateInsert operation declaratively add new line to af:table.

    "createInsert" has a problem: he inserts. I know almost no case (at least in a well-designed database location) when possible, insert without data. As it is in my case, so createInsert will not work, I get an exception from the database during insertion.

    It will insert line collection in British Colombia ADF, not in the db table.

    Framework will display data from db only when you call commit operation (or if you call transaction.postChanges ()) programmatically.

    Thus, the workflow must be:

    -Invoke CreateInsert

    -Fill in all the mandatory attributes for this ViewObject

    -Don't commit / rollback

    Dario

  • Why I can't run iPhoto after update to Yosemite 10.10.5?

    Why I can't run iPhoto after update to Yosemite 10.10.5?

    With no details we cannot guess... have not updated to iPhoto? What version do you have?

  • Why Firefox always tells me that Adobe plug-ins must be updated, when I've just updated beyond the versions them says Firefox update?

    On the status of the plug-in page, Firefox said I have potentially vulnerable Adobe Flash player c. 19.0.0.185 and should be updated. I have already taken this opinion but Adobe confirms that my version is 19.0.0.226. I ran the update at least twice (and of course I restarted Firefox several times and refreshed the page for good measure). Why Firefox think I always c. 19.0.0.185?

    Essentially the same story with Adobe Reader plug-in 15.9.20069.28170. Firefox said I have this outdated version and should be updated. I ran the update at least twice (but unlike with Flash Player I don't know how to confirm that the update is installed). The version that Firefox says I have and advice to update, has not changed.

    I've updated two plug-ins yesterday. Immediately after the update, when I refreshed the page status of the plugin, these plug-ins have disappeared from lists "vulnerable" or "outdated". It's only the Adobe Flash Player and Reader plug-in updates (which I did yesterday) that Firefox seems to blind. I waited a day to see if Firefox would recognize the edits today, but it still does not work. On this page of presentation of the question, "Assumptions" of Firefox on my current browser list older versions of Adobe Flash Player and Reader that I've already updated since.

    Plugins are installed on the system and not in Firefox. So he can tell you were the same when you installed know that it is usually because you have two system installed an older version of Flash Player.

    https://helpx.Adobe.com/Flash-Player/KB/uninstall-Flash-Player-Windows.html

    Maybe try to uninstall all versions of Flash Player (basic plugin) and install the current https://www.adobe.com/products/flashplayer/distribution3.html (basic plugin), while Firefox is closed.

  • Why, after several months, when checking "installed updated history, there are more than 50 copies of 2 updates?

    Original title: windows updates

    Why, after several months, when checking "installed update history, there are more than 50 copies of 2 updates, KB30744230 and KB307450. Almost daily show several updates for each.

    To repeat the Net Framework updates are trying:
    http://support.Microsoft.com/kb/976982

  • Why dllhost.exe crashes when trying to create thumbnails for video files 3D it was working before the update to Internet Explorer 10

    I could view and manipulate all my files video 3D before the update to IE10, so I did a restore and all is well again.

    The problem IE10 was installed host.dll/substitution/thumbnail cache com would consume memory until it saturated my whole system and crashing.

    Updated platform for Windows 7 x 64-Edition (KB2670838)

    http://support.Microsoft.com/kb/2670838?WA=wsignin1.0%2cwsignin1.0

    This update of the platform also allows the emergence of the problem.

    I could view and manipulate all my files video 3D before the update to IE10, so I did a restore and all is well again.

    The problem IE10 was installed host.dll/substitution/thumbnail cache com would consume memory until it saturated my whole system and crashing.

    Updated platform for Windows 7 x 64-Edition (KB2670838)

    http://support.Microsoft.com/kb/2670838?WA=wsignin1.0%2cwsignin1.0

    This update of the platform also allows the emergence of the problem.

    Why does dllhost.exe Com surrogate consumes memory until the crash.

    This happens when I highlight or view a folder containing video files, even if I close the file or select another folder, that maintains the memory consuming.

    It seems to happen more often with the 3D video files, but it has done the same with the 2D files.

    It therefore seems to be a problem with the windows thumb nails system on these files.

    Besides trying to delete or move the file or folder, while the Com Surrogate consumes memory Delete cannot complete the task.

    What I did is to find by selecting delete file in question, then go to Task Manager stopping Com Surrogate, then deletes the file.

    OK guys and girls, here is the scoop or what I discovered.

    Went to paid Support MS started a ticket gave them the info of the problem.

    I backed up before you have to pay, but it will still leave a ticket on the system req.

    Them I did a searck masive on this problem and ran into this and I beleve it's true. It's the way they handled a similar problem in Vista.

    So here it is.

    "MS are aware of the problems with certain chipset / combinations ofdriver with the updated KB2670838.
    They also have problems with the installation of IE10

    They work on these two issues and will be updated as and when they are convinced that they have solved the problems.
    In the meantime, the recommendation is that if the update isn't the first phase of installation, make sure that it is uninstalled and then hide it - Windows Update will display it when it is updated. »

    To uninstall IE10 and KB2670838 update, should be fixed hide automatic update when your pop back up to be updated the problem.

    Evidence that MS knows that IE10 has problems on some hardware platforms is here.

    http://TechNet.Microsoft.com/en-us/IE/jj898509.aspx

    Hope this helps Every One.

  • Why iPhoto does not appear when I opened 13 items on iMac?

    Why iPhoto does not appear when I opened 13 items on iMac?

    Moving to the right forum

  • Why the application manager said that muse is updated, when it isn't? And will not let me update?

    Why the application manager said that muse is updated, when it isn't? And will not let me update?

    I have the latest version of OS X I opened Muse and he tells me that I have to update. I have check and that's only still v1.1, 960 to build.

    There is a promblem I don't know?

    Hello

    Sorry for the confusion and frustration.

    Because the Muse is an Air application, there are some limitations in the way that we interact with the Application Manager that can cause these types of States in conflict. We have plans that will address this, but unfortunately, it of a complicated situation and will take time.

    I'm working on a document that will address all the various installation questions such as this one and post it on the forum and elsewhere when its done. I apologize that this has not happened before and several people were affected than expected.

    See you soon,.

    Justin price

  • I was in the middle of an update when my Macbook Pro closing in on me, and when he turned back, he wouldn't let log me into my account. Why is this happening?

    I was in the middle of an update when my Macbook Pro closing in on me, and when he turned back, he wouldn't let log me into my account. I know that my password and everything, but this isn't just me connect. I have to restart the laptop? If so is there a way I can save all my documents? Please help as soon as POSSIBLE.

    Was it a software update from apple? When an apple update requires a restart, it may take a little time so that it starts. If it do not, you can try a reboot. What year MBP and operating system you are running. If everything fails and you have the recovery partition. You can start on it and do a reinstall. This should not delete any personal files.

  • iPhoto to the photos in El Capitan

    I loaded El Capitan and it looks like all my photos are in the Photos. Can I remove the iPhoto application? If so, how? IPhoto photos are removed from iCloud?

    Hello

    Help hee > Photos for OS X - Apple iPhoto support update

  • Why all the bad reviews of el capitan?

    Why all this negative opinions on El Capitan?

    In General, you should always pass to the last possible system like you meet the specs for, as long as you do not have "must have" applications that do not meet specifications. The idea that the updates/updates cause problems is probably derived from discussions that see you here. ASC is like an emergency room for people to have problems, especially the sick, those who come here. Hundreds of thousands of people pass without difficulty, never here and go merrily on their way. In addition to the improved features, updates/improvements important security fixes.

  • Can't access my photos more iPhoto since update to El Captain... pictures don't merge to Photo app, how can I restore them?

    Can't access my photos more iPhoto since update to El captain. photos merged to Photo app, how to restore? Another operating system it will correct?

    Cannot access my photos iPhoto since update to El captain

    To use iPhoto on El Capitan, update iPhoto version 9.6.1.

    If you don't have day before the upgrade of the El Capitan, see: user tip Barney: cannot be updated iPhoto because it is not available in the App Store#.

    The El Capitan upgrade removes just the iPhoto in the Dock icon. Have you looked into your Applications folder, if iPhoto is still there?

    photos merged to Photo app, how to restore? Another operating system it will correct?

    You can open the iPhoto library in pictures by dragging the icon in the Dock of Photos in the iPhoto library.

    It requires that the library is on a compatible player.  The library must be on a local drive mounted, not a NAS, and file system must be in Mac OS extended (journaled). The reader doesn't have to be a Time Machine drive.

    What version of iPhoto created your iPhoto library.  If the version of iPhoto is iPhoto 7.1.2 or more, you must prepare the iPhoto with iPhoto Library upgrade library.    iPhoto 11: on the development of library

  • Why does not update my Mac/Itunes

    Dear all,

    New to this forum thing but I have no were else to turn.

    I recently bought a new mini Ipad 4 running the latest OS 9.2, however when I have the cable link to my Mac, it is not recognized due to my Mac running an old Itunes.

    So, as any who would put you at day - however, my Mac tells me that I run later: Mac OS X 10.6.8... It does not update further. Then, my Itunes is 11 V. 4 and when I go to apple.com, it won't download any version later i.e. V12

    So now I have an ipad that I can't fully use

    My Mac features;

    Model ID: iMac10, 1

    Processor name: Intel Core 2 Duo

    Processor speed: 3.06 GHz

    Number of processors: 1

    Total number of cores: 2

    L2 Cache: 3 MB

    Memory: 4 GB

    Bus speed: 1.07 GHz

    Many thanks to anyone who has faced a similer problem or knows how to solve this problem

    C.

    PS - I've read about the update OS X El Capitan, but it seems that many people have problems with it, so I have not upgraded to this OS

    "it will be not updated everything.

    That does not mean that you cannot upgrade to a new OS X. There is a difference between an update and upgrade. Just because you read that some users have had problems with El Capitan, does mean you want.

    The minimum requirement of OS X for iTunes 12.3.2 is OS X 10.8.5 or later as shown here > Download iTunes 12.3.2

    If your Mac meets the requirements, you can upgrade for free directly to El Capitan v10.11 > OS X El Capitan - technical specifications

    El Capitan is available for free on the App Store.

    Then you can update iTunes to sync with your new iPad.

    If your Mac does not meet the requirements of El Capitan, see if your Mac can pass to v10.8 Mountain Lion > system requirements for OS X Lion mountain

    If so, you can buy at the Apple Store Mountain Lion > http://www.apple.com/shop/product/D6377Z/A/os-x-mountain-lion

    Apple will send you a confirmation email with a redemption code. You can use this code to purchase on the App Store to download Mountain Lion.

    Very important to read this thing before upgrading to snow Leoaprd > the upgrade of 10.7 and don't forget Rosetta! Apple Support communities

    post edited by: CS

  • The computer is stuck on automatic updating when closing down.

    During execution of the closure procedure an automatic update starts and had not finished after many hours. Even if it says do not turn off or unplug, because the computer will turn off automatically, I had to do. Now when starting, it still considers that it is updated, and other programs do not work correctly. I need to start in safe mode to restore, because the system restore does not start. How that I start in safe mode? And why the automatic update is causing this problem? It's never happened before, so there must be a bug in the update, and I can't stop it starts up because it is automatic! Someone Please helpme!
    My computer is using Windows XP Professional
    Thank you very much

    http://www.Microsoft.com/windowsxp/expertzone/newsgroups/reader.mspx?DG=Microsoft.public.WindowsXP.General

    Above is the link to XP Newsgroups.

    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.windowsupdate&cat=en_us_d99bb655-a5d5-4C07-bdb0-90caf9f30c42&lang=en&CR=us

    Problems with the binding update Windows XP

    Restore point:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    See you soon

    These are the Vista Forums. Mick Murphy - Microsoft partner

  • I have to manually install the driver for Aspire ZC-102, updates when I move Windows 8 to 10?

    I have to manually install the driver for Aspire ZC-102, updates when I move Windows 8 to 10?

    I was struggling with this ACER for more than a year. I have do it I have back when it was still under warranty, 14 months ago. Now I've updated free online through Microsoft for Windows 10 back in early August. I had hoped that my mess was a stack of the operating system, but unfortunately, it's still a piece. However, there is no virus. I run Malwarebytes Pro full time with it has quarantined of PUPPIES as well as McAfee Anti Virus full time. I use cCleaner to keep cut up. I NEVER garguillo or browsed porn.
    I've got max 16 GB of RAM. I have very few applications other than Office 2013.

    Even if this thing was a room at the time where it was running Windows 8 and 8.1, so I want to try to make it work on Windows 10 without having to start over with a clean install. That's why I asked about the drivers.

    your ZC-102 will not have a direct drivers updated from Acer support, which means you have to rely on Windows Update by itself the drivers or get them by yourself.

    Let me give you 3 Tips:

    1) never use Registry cleaners Windows 8.x and above all, they are no longer needed

    (2) uninstall McAfee, he kills the performance of your machine, use the antivirus windows integrated, it is good and very light

    (3) If you require loading time fast on programs, think about an SSD upgrade

Maybe you are looking for

  • A protective case for an iPhone 5 c will fit the new iPhone SE?

    A protective case for an iPhone 5 c will fit the new iPhone SE?  In the products section, there are cases that say they will fit the iPhone 5, 5 s and SE.  They would hold a 5 c as well?

  • Mail in El Capitan has no option of stationery button

    I already read all the instructions to add the stationery button to my e-mail toolbar in El Capitan. The problem is that I can't find this button on my existing toolbar or in the visible choices in the drop-down menu when I select the toolbar Customi

  • Monitor/screen resolution problem

    Hi, my work PC runs Windows XP Embedded. It has a Fujitsu LL3200T LCD monitor connected to a graphics SiS Mirage 741 adapter 20 ". When I change the resolution under properties of the view to something higher to 1024 x 786 screen resolution changes,

  • Unable to connect to Internet service/ePrint C310a

    I have a new C310a. It works well with wireless printing. However when I try to connect it to the ePrint, services Web services or search the program updates it shows an error message "problem to connect with the web service server. I have no problem

  • BlackBerry Z10 Can someone help me to remove my Z10 10.3.02.2474 BONE?

    My z10 upgrade in 10.3.02.2474 automatically without notice. I find that I can't remove to get the OS 10.2, which is my favorite. I used iphone 4S and lumia 928. If you want to have a new OS, you can check it out and determine update. However, blacke