Bad with 10.0.2

udated to 10.0.2. The battery quality is degraded with only 10 and now, my apps are starting to freeze. What is happening on Apple? I did all what all the forums. I have no apps to open, I close them all the time. Battery is down 30% in an hour.

HR Geop wrote:

I did all what all the forums.

Well, since you've done 'everything', which leaves nothing to suggest.

I wonder if 'all' includes:

  • Checking the settings > battery to find out which applications consume the battery more
  • Checking the settings > general > storage & use iCloud > manage storage (in storage) to make sure that you have absolutely no less (and hopefully a lot more) 10% of total storage of free iPhone.

Tags: iPhone

Similar Questions

  • Works very well with the iPad, stutters badly with Macbook Pro

    Work fine with the iPad but stutters badly when using Macbook Pro OSX Version 10.11.4 El Capitan

    We need more in detail here, please.

    I'm assuming that you are referring to AirPlay of these devices. You are AirPlaying video, music or using mirroring of the screen?

    If you are mirrored, others may comment on OS X settings to make this work.

  • Bad with emailing... How to change a "server name"?

    I have a problem, emailing and sending photos... This happens: the host ' * address email is removed from the privacy *' is not found. Please check that you have entered the server name correctly.    his old buddies email etc... How do I change/fix this? Help! Sometimes I can send things but, it happened again just... thx!

    Possible problem with the server on your side or your friend (e), first contact your e-mail service provider and discuss with them. They might be a restriction by sending content to the destination email.

    Finally, it comes to forum public and please do NOT post an e-mail here.

  • Hi, I can't get internet explore... Ive put a forgotten password it and now I am bad with some of the things I want to see.

    can someone help me with this you problem? Thank you, jackie.

    Sorry, we are not allowed to help users to bypass the password protection, without worrying
    What are the "reasons".
    Here's the Microsoft Policy about this:
    http://social.answers.Microsoft.com/forums/en-us/vistasecurity/thread/3eba3150-8742-4264-be9f-0daaad2282cd

  • Reproducible bug, leading to results SOME bad (with unit test)

    Hi all

    Please see this test unit http://jumpshare.com/b/Y7naM9 (sorry, not possible to attach files here).
    What I get is the following. As you can see the result is different to SELECT EVEN though I created the two indices. This is definitely a serious error!

    The implementation plans for the two selects are:
    (1) without a clue: http://i.imgur.com/uCLoc.png
    (2) with indices: http://i.imgur.com/RNruC.png
    BANNER                                                                         
    --------------------------------------------------------------------------------
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production              
    PL/SQL Release 11.2.0.2.0 - Production                                           
    CORE     11.2.0.2.0     Production                                                         
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production                          
    NLSRTL Version 11.2.0.2.0 - Production                                           
    
    view V dropped.
    table T dropped.
    materialized view MV dropped.
    table C dropped.
    table C created.
    1 rows inserted.
    table T created.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    .........many rows
    committed.
    materialized view MV created.
    view V created.
      COUNT(*)
    ----------
           190 
     
    index MV_ZIPCODE_ZIPCODE created.
    index MV_ZIPCODE_LOCALITY_COUNTRY created.
      COUNT(*)
    ----------
             0
    Could you please say what's not here?

    Thank you
    Blama

    Published by: Laurent January 9, 2013 15:25

    Yes, I can reproduce it on 11.2.0.2.0:

    SQL> SELECT banner FROM v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for HPUX: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    
    SQL> DROP VIEW V;
    DROP VIEW V
    *
    ERROR at line 1:
    ORA-00942: table or view does not exist
    
    SQL> DROP TABLE T;
    DROP TABLE T
               *
    ERROR at line 1:
    ORA-00942: table or view does not exist
    
    SQL> DROP TABLE C;
    DROP TABLE C
               *
    ERROR at line 1:
    ORA-00942: table or view does not exist
    
    SQL>
    SQL> CREATE TABLE C
      2     ( ID NUMBER(*,0),
      3   SHORTNAME_DE VARCHAR2(40 CHAR)); 
    
    Table created.
    
    SQL> INSERT INTO C (ID,SHORTNAME_DE) values (1,'d');
    
    1 row created.
    
    SQL>
    SQL> CREATE TABLE T
      2     ( ZIP_CODE VARCHAR2(10 BYTE),
      3   COUNTRY VARCHAR2(100 BYTE),
      4   LOCALITY VARCHAR2(100 BYTE),
      5   SUB_LOCALITY VARCHAR2(100 BYTE)
      6  );
    
    Table created.
    
    SQL>
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('01','d','AA',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('02','d','BB',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('03','d','CC',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('04','d','DD',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('05','d','EE',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('06','d','FF',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('07','d','GG',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('08','d','HH',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('09','d','II',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('10','d','JJ',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('11','d','KK',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('12','d','LL',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('13','d','MM',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('14','d','NN',null);
    
    1 row created.
    
    SQL> Insert into T (ZIP_CODE,COUNTRY,LOCALITY,SUB_LOCALITY) values ('15','d','OO',null);
    
    1 row created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    15 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    30 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    60 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    120 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    240 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    480 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    960 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    1920 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    3840 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    7680 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    15360 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    30720 rows created.
    
    SQL> INSERT INTO T SELECT * FROM T;
    
    61440 rows created.
    
    SQL> COMMIT;
    
    Commit complete.
    
    SQL>
    SQL> CREATE OR REPLACE VIEW v AS
      2    SELECT c.id      AS country_id,
      3    c.shortname_de AS country_shortname_de,
      4    t.zip_code   AS zipcode,
      5    NVL(t.locality, t.sub_locality) ortsvorschlag
      6  FROM t
      7  LEFT OUTER JOIN c
      8  ON t.country = c.shortname_de
      9      WITH READ ONLY;
    
    View created.
    
    SQL>
    SQL> SELECT COUNT(*) FROM v WHERE
      2      (
      3      ZIPCODE LIKE 'B%' ESCAPE'\'
      4      AND ZIPCODE IS NOT NULL
      5      )
      6      OR
      7      (
      8      ORTSVORSCHLAG like 'B%'
      9      AND ORTSVORSCHLAG IS NOT NULL
     10      )
     11      ;
    
      COUNT(*)
    ----------
          8192
    
    SQL>
    SQL>  CREATE INDEX t_zipcode_zipcode ON t
      2      (zip_code
      3      ) ;
    
    Index created.
    
    SQL>  CREATE INDEX t_zipcode_locality_country ON t
      2      (NVL(locality, sub_locality), country
      3      ) ;
    
    Index created.
    
    SQL> --DROP INDEX t_zipcode_zipcode;
    SQL> --DROP INDEX t_zipcode_locality_country;
    SQL>
    SQL> SELECT COUNT(*) FROM v WHERE
      2      (
      3      ZIPCODE LIKE 'B%' ESCAPE'\'
      4      AND ZIPCODE IS NOT NULL
      5      )
      6      OR
      7      (
      8      ORTSVORSCHLAG like 'B%'
      9      AND ORTSVORSCHLAG IS NOT NULL
     10      )
     11      ;
    
      COUNT(*)
    ----------
             0
    
    SQL> 
    

    And it's index t_zipcode_zipcode creating the issue. Looks like a bug, so search MetaLink or / and open SR.

    SY.

  • Retina display of bad with PSE 12 new iMac

    Hi, PSE 12 problems with screens Retina also relate to new iMacs?

    As much as I know it is not yet an imac with a retina display, so no, they do not.

  • I am bad with Live View and display in web browser

    I followed a tut on lynda.com to make a banner in rotation using JQuery and CSS, but I'm a little hung up with html, anyone who is willing to lend a hand?

    My div containers and images show in Design view, but when I try to preview them in Safari or live mode view, it is empty!

    Screen shot 2012-08-27 at 7.33.21 PM.png

    I downloaded the project at http://nelsongifts.com/animated_banner/index.html

    Here is the code I have a way for the body.

    < body >

    < div class = "marquee_container" >

    < div class = "marquee_photos" >

    "< img src="images/photos/Facebook.jpg "class ="marquee_panel_photo"alt ="Facebook"width ="625"height ="400"/ >

    < / div >

    < div class = "marquee_caption" >

    < div class = "marquee_caption_content" >

    "< img src="images/template/logo_facebook.png "class ="marquee_logo"width ="20"height ="13"/ >

    < H2 > join us on Facebook < / h2 >

    Test legend < p > < br / > < /p > more tests

    < p > < a href = "#" > check it out! < /a > < /p >

    < / div >

    < / div >

    < div class = "marquee_nav" >

    < a class = "marquee_nav_item" > < / a >

    < a class = "selected marquee_nav_item" > < /a >

    < a class = "marquee_nav_item" > < / a >

    < / div >

    < / div >

    < div class = "marquee_panels" > < / div >

    < / body >

    And here's the css.

    @charset "UTF-8";

    / * CSS document * /.

    {.marquee_container}

    margin-top: 0px;

    margin-right: 0px;

    margin-bottom: 30px;

    left margin: 0px;

    overflow: hidden;

    position: relative;

    }

    {.marquee_photos}

    position: absolute;

    left: 0px;

    Top: 0px;

    }

    {.marquee_caption}

    color: #FFF;

    background-image: url (.. / images/template/marquee_caption.png);

    background-repeat: no-repeat;

    background-position: 0px 0px;

    margin: 0px;

    Width: 625px;

    padding-top: 15px;

    padding-right: 0px;

    padding-bottom: 10px;

    padding-left: 0px;

    position: absolute;

    left: 0px;

    top: 390px;

    }

    {.marquee_caption_content}

    Width: 410px;

    padding-top: 0px;

    padding-right: 0px;

    padding-bottom: 0px;

    padding-left: 25px;

    }

    .marquee_caption h2 {}

    font size: 1.25em;

    make-weight: normal;

    text-transform: uppercase;

    color: #FFF;

    margin-top: 0px;

    margin-right: 0px;

    margin-bottom: 12px;

    left margin: 0px;

    }

    .marquee_caption_content p {}

    color: #FFF;

    margin-top: 0px;

    margin-right: 0px;

    margin-bottom: 12px;

    left margin: 0px;

    }

    .marquee_caption_content a {}

    color: #FC0;

    }

    .marquee_caption_content a: hover {}

    color: #FFF;

    }

    .marquee_caption_content .marquee_logo {}

    float: left;

    margin-right: 10px;

    }

    {.marquee_nav}

    text-align: right;

    position: absolute;

    Width: 240px;

    top: 390px;

    right: 321px.

    }

    .marquee_nav a {}

    background-image: url (.. / images/template/buttons.png);

    background-repeat: no-repeat;

    background-position: 0px 0px;

    display: inline-block;

    height: 20px;

    Width: 20px;

    margin left: 15px;

    cursor: pointer;

    }

    Thanks for the help guys!

    By removing the overflow: hidden CSS rule it appears mode live view... but infinity rule is supposed to hide everything outside the .marquee_container div, so I still need. When I get rid of position = absolute on the marquee_photos class, it seems to fix the problem, but I don't understand why.

  • "all my .exe files will open with ie" my bad gestures "and I can't restore default settings

    What iam I missing besides a brain?

    Hello

    When you double-click a. EXE file, the program may not start, instead, it can open in Notepad
    (view the contents of .exe), or you can jump into any other application.
    http://WindowsXP.MVPs.org/exeasso.htm

    Restore the .exe Windows Vista file association, after badly with another application
    http://www.Winhelponline.com/articles/165/1/restore-the-exe-file-association-in-Windows-Vista-after-incorrectly-associating-it-with-another-application.html

    Restore the Type Associations by default Vista file extensions
    http://www.Vistax64.com/tutorials/233243-default-file-type-associations-restore.html
    How to set default Associations for a program under Vista
    http://www.Vistax64.com/tutorials/83196-default-programs-program-default-associations.html

    How to associate a file Extension with a program Type in Vistahttp://www.vistax64.com/tutorials/69758-default-programs.html

    How to view and change an Extension of filename on Vista
    http://www.Vistax64.com/tutorials/103171-file-name-extension.html

    How Unassociate a Type of Extension file in Vista and a utility to help
    http://www.Vistax64.com/tutorials/91920-unassociate-file-extention-type.html

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • Problem with Firefox 13 certificate and secure Web sites

    Hello

    I am using Windows 7 32 bit on a Dell laptop.

    Everything was going well until I've upgraded to Firefox 13 a few days ago. I can't not to connect to Web sites secured like Gmail, Amazon, etc.

    It works perfectly fine in all other browsers is not an OS related issue.

    I use ESET Smart Security 6.0 beta and he hasn't behaved badly with any application.

    I tried the basic solutions as compensation network, the browser history cache, etc. I also reinstalled 13 (own) of Firefox.

    There is no modules or extensions installed in Firefox. The Proxy is set to 'No Proxy'.

    Each click in gmail throws an "Untrusted" error, even if I get certificates and store them permanently.

    I also tried tweaking all: variable config like below, but did not work.

    Browser.XUL.error_pages.expert_bad_cert = true

    Please help because it is extremely difficult to work with these problems.

    Thank you
    Anand

    Bingo!

    I removed SSL scanning from ESET 6.0 and re-installed all the more recent Windows updates. Everything works fine now.

    Thanks for your help!

    Best wishes, Anand

  • HP Envy Notebook m6-1125dx: no problems with the HP Envy m6 at 10 Windows upgrade?

    I plan the upgrade of Windows 10 of my HP ENVY m6-1125dx Notebook PC (Intel Core i5 - 3210M CPU) and need to know if this computer will be compatible with Windows 10. Because the HP support Web site now requires a scanning system to report on the drivers available, I have no way of knowing if there are any drivers Windows 10 available (or if they are still required). I thought that maybe I could send an e-mail or chat with HP to see what they have to say, but they want $60 to answer a question!

    Please let know us if anyone has experience (good or bad) with 10 of Windows upgrade for th want m6.

    Hüffer,

    Just an update... I followed your advice and installed upgrading on-site instead of clean, and everything seems to work fine. The only real glitch, I met was the trackpad settings have been changed which because of many problems, but I could attack while going in the Synaptics Control Panel and reset everything to the way I like them.

    Thanks again for the help and I'll review it "resolved".

  • More problems with Windows Update

    I'm having a time really bad with Windows Update!   Not only the "check updates" feature will not work, but also when I check the updates have been installed Control Panel - programs and features - View Installed Updates tells me there is no u [pdates installed.   It's not fair; the history of the update of the lists a lot of updates.   ASnyone know what is wrong? Tony Holland

    tony_holland wrote: I have two anti anti-virus applications - software order 5 Anti-Malware and SuperantiSpyware. for both subscriptions are up to date.   I do not have a third-party firewall.

    These two aren't anti-spyware applications, anti-virus applications.

    You see the effects of hijackware virus or Trojan infection.

    Backup of personal data (which none should be considered 100% reliable at this point) then do a format and clean install of Windows.  Please note that a repair installation (upgrade AKA on-site) will NOT fix it!

    Once installed the clean, you will have the equivalent of a "new computer" in order to take care of everything on the next page before connecting the machine to the internet or a network otherwise and before using a USB key that is not brand new, or has not been freshly formatted:

    5 steps to help protect your new computer before going online
         http://www.Microsoft.com/protect/computer/advanced/XPPC.mspx

    Other useful references include:

    Measures to help prevent spyware
    http://www.Microsoft.com/security/spyware/prevent.aspx

    Measures to help prevent computer worms
    http://www.Microsoft.com/security/worms/prevent.aspx

    Avoid fake security software!
    http://www.Microsoft.com/security/antivirus/rogue.aspx

    Good luck!

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • All office programs open with the same program

    Original title: display the office programs.
    I clicked on 'Open with' to open a program, and now almost all my desktop programs are displayed as this program, I opened with as well.

       Restore point:

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    Do Safe Mode system restore, if it is impossible to do in Normal Mode.

    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.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the above does not work:

    http://www.Winhelponline.com/articles/165/1/restore-the-exe-file-association-in-Windows-Vista-after-incorrectly-associating-it-with-another-application.html

    Restore the .exe Windows Vista file association, after badly with another application

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://www.Winhelponline.com/articles/105/1/file-association-fixes-for-Windows-Vista.html

    For Windows Vista file association problems

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    How to set file Associations:

    http://articles.TechRepublic.com.com/5100-10878_11-6172036.html

    How do I... Change file extension associations in Windows Vista?

    Mick Murphy - Microsoft partner

  • Bad folder on files icon

    I hope I can explain this right since it is very strange, I download a zip file with paintshop pro tubes then open passage to the file on the computer. When I go to use it, or have already used the file icon is attached itself to other files in this folder, not only one but several, but retains the correct file name but bad icon. Don't understand not what's going on can't every time, then when I try to open this file in paintshop pro x it tells me that it can not read or that he had a problem reading the file. It makes me mad any help would be appreciated. Check my registry with a scan without problems also ran virus checks, etc., I am running vista Home premium, winzip 14 and paintshop pro x

    Hello

    Reset the associations.

    When you double-click a. EXE file, the program may not start, instead, it can open in Notepad
    (view the contents of .exe), or you can jump into any other application.
    http://WindowsXP.MVPs.org/exeasso.htm

    Restore the .exe Windows Vista file association, after badly with another application
    http://www.Winhelponline.com/articles/165/1/restore-the-exe-file-association-in-Windows-Vista-after-incorrectly-associating-it-with-another-application.html

    If necessary:

    How to set default Associations for a program under Vista
    http://www.Vistax64.com/tutorials/83196-default-programs-program-default-associations.html

    How to associate a file Type of Extension to a program under Vista
    http://www.Vistax64.com/tutorials/69758-default-programs.html

    How Unassociate a Type of Extension file in Vista - and a utility to help
    http://www.Vistax64.com/tutorials/91920-unassociate-file-extention-type.html
    Restore the Type Associations by default Vista file extensions
    http://www.Vistax64.com/tutorials/233243-default-file-type-associations-restore.html
    How to view and change an Extension of filename on Vista
    http://www.Vistax64.com/tutorials/103171-file-name-extension.html

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • Get the option 'Open with' and cannot open exe files

    My pc was just after I chose to open a file accidentally with adobe... I deleted Adobe but now I can't open any exe files as before... but now I have an option 'Open with', but I don't know what program I need to use... I need some help im not very good with a PC... and I am freaked... (Sorry for my English) I have Windows 7

    http://www.Winhelponline.com/articles/165/1/restore-the-exe-file-association-in-Windows-Vista-after-incorrectly-associating-it-with-another-application.html

    Restore the .exe Windows Vista file association, after badly with another application

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://www.mydigitallife.info/2008/06/22/reset-and-fix-broken-Windows-Vista-file-ext-and-type-associations-include-exe-com-sys-zip-lnk-folder-drive/

    Reset and Fix Broken Windows Vista file Ext and Type Associations (include EXE, COM, SYS, ZIP, LNK, folder, drive)

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://www.Winhelponline.com/articles/105/1/file-association-fixes-for-Windows-Vista.html

    For Windows Vista file association problems

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    How to set file Associations:

    http://articles.TechRepublic.com.com/5100-10878_11-6172036.html

    How do I... Change file extension associations in Windows Vista?

    See you soon.

    Mick Murphy - Microsoft partner

  • All downloads to open with Notepad

    When I try to open things I downloaded everything opens with Notepad. Even system restore opens with Notepad. Please can someone help me

    Hello

    When you double-click a. EXE file, the program may not start, instead, it can open in Notepad
    (view the contents of .exe), or you can jump into any other application.
    http://WindowsXP.MVPs.org/exeasso.htm

    Restore the .exe Windows Vista file association, after badly with another application
    http://www.Winhelponline.com/articles/165/1/restore-the-exe-file-association-in-Windows-Vista-after-incorrectly-associating-it-with-another-application.html

    If necessary:

    How to set default Associations for a program under Vista
    http://www.Vistax64.com/tutorials/83196-default-programs-program-default-associations.html

    How to associate a file Type of Extension to a program under Vista
    http://www.Vistax64.com/tutorials/69758-default-programs.html

    How Unassociate a Type of Extension file in Vista - and a utility to help
    http://www.Vistax64.com/tutorials/91920-unassociate-file-extention-type.html
    Restore the Type Associations by default Vista file extensions
    http://www.Vistax64.com/tutorials/233243-default-file-type-associations-restore.html
    How to view and change an Extension of filename on Vista
    http://www.Vistax64.com/tutorials/103171-file-name-extension.html

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

Maybe you are looking for