Why won't this work?

I started a Microsoft account for my Windows laptop, 8. Then, I changed the primary alias to a different email address. I tried to add my previous as an alias account so that I could do the primary alias. Did not work. He said that it was already used. How can I get this back to the original address?

Thank you

KelseyE

There is at least a day 30 Security hold until you can do it.  After that, you should be able to.

Tags: Windows

Similar Questions

  • I have a MacBook Pro 2013 and installed from a disc of Lightroom 3.  I enter my serial number and it tells me it's wrong.  Why won't this work?

    I bought the product, have a serial number, and when I go to install from a superdrive drive, he told me that my serial number is not valid.  I have a MacBook Pro 2013 and it running Yosemite 10.10.5

    Thank you much for the help!

    Jericho

    Please see the links below.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • Why doesn't this work?

    test\Test7.Java:

    test of the package;

    public class Test7

    {

    public static foo (int x) Sub

    {

    System.out.println ("int foo test 7:" + x);

    }

    }

    Test8.Java:

    public class Test8

    {

    Public Shared Sub main (String [] args)

    {

    System.out.println ("Test8 hand");

    test . Test7.foo (10); 

    }

    }

    command line:

    C:\Users\J\My Documents\java > dir Test8.*

    Directory of C:\Users\J\My Documents\java

    13/08/2013 10:42 220 Test8.java

    1 file (s) 220 bytes

    0 35,856,887,808 dir bytes free

    C:\Users\J\My Documents\java > dir test\Test7 *.

    Directory of C:\Users\J\My Documents\java\test

    13/08/2013 10:147 03 Test7.java

    1 file (s) 147 bytes

    0 35,856,887,808 dir bytes free

    C:\Users\J\My Documents\java > javac Test8.java

    Test8.Java:8: error: cannot find symbol

    test. Test7.foo (10);

    ^

    symbol: variable Test7

    Location: the class test

    1 error

    The change Test8.Java so that it uses an import statement allows compilation succeed:

    test import. Test7;

    public class Test8

    {

    Public Shared Sub main (String [] args)

    {

    System.out.println ("Test8 hand");

    Test7.foo (10);

    }

    }

    C:\Users\J\My Documents\java > javac Test8.java

    C:\Users\J\My Documents\java >

    Why?

    Well, I just realized why it did not work. The real reason why he did not has nothing to do with any rubbish too complicated observability; My instincts were right: it must have worked, and indeed it would have worked throughout if it wasn't the fact that there is a file called test.class in the current directory.

    The idea, after all, was in the error message, which, after return to this issue tonight and trying to solve the question damned again, I suddenly comes on:

    C:\Users\J\My Documents\java > javac Test8.java

    Test8.Java:8: error: cannot find symbol

    test. Test7.foo (10);

    ^

    symbol: variable Test7

    Location: the class test

    1 error

    Huh, Test7 variable in the testclass?  That could mean maybe?  Why the compiler complains a class called test when it is supposed to be a package?  Well, it was the test.class that the compiler has been conclusive file and of course when she concluded test.class assumed which corresponded to the call of 'test. Test7.foo ()' in Test8.java and does not consider this criterion might be a package and Test7 a class within this package. God knows how he got there, but he happened did and he managed to screw up my compilation and cause a lot of grief.

    So, ultimately it had nothing to do with the observability and diagnose the cause of the problem does not need a complex understand the JLS based on a bunch of definitions on observability and paragraphs JLS, the package java.util, java package, java.io, sub-packages and others like.

    Everything I thought about how it should be was right - you should be able to use an import statement or a full qualified class reference. It should not make a difference either. It is the convenience of a programmer to use import instructions. It is not mandatory for references to classes in your own packages to include an import statement in your .java file. I am happy to say I stuck to my guns in the face of hostile enemy fire and refused to be intimidated by explanations that comes, for me, has no meaning.

    Please take note chaps, especially my good friend cardan2 and disciple and my very good friend masijade, I at no time has received a solution to this problem either here or 'the other place '.

    Problem solved

  • Why won't this script work?

    Well so yesterday I posted a question I had with join InDesign files, I thought that I had found a solution and I was wrong. Nothing is as humbling as script... anyway the gist of what I'm trying to do is trying to combine a lot of InDesign files in a single large document. The problem I encounter is that InDesign crashes. What is strange to me is that a single iteration of this script works oddly, however when I try to do with multiple InDesign files * the bed.

    Any help on the figure, it would be much appreciated.

    System: WIndows 7

    Indy Version: CS5

    (1) selecting a folder.

    (2) get the files.

    (3) open one at a time, and duplicate pages in another document. (Which I call OCD because I basically that is what I want to do with the giant document.)

    (4) close the source file without saving the changes. Pages should not change, but better safe than sorry.

    (5) close the (TOC) destination file and save it with the new pages to this subject.

    inDesign #target

    File = Folder.selectDialog ();

    files = folder.getFiles ("*.") INDD");

    for (var i = 0; i < files.length; i ++) {}

    source_doc = app.open (files [i]);

    destination_doc = app.open (file ("c: / / users//user//desktop//TOC.indd"))

    REST();

    }

    function rest() {}

    sourcePages = source_doc.pages.itemByRange (0, -1);

    sourcePages.duplicate (LocationOptions.AFTER, destination_doc.pages.item(-1));

    source_doc. Close (SaveOptions.no);

    destination_doc. Close (SaveOptions.YES, "c://users//user//desktop//TOC.indd");

    }

    Couple of thoughts: the code is kind of a mess. I don't understand why you are opening and closing of your doc of destination with each iteration, or why you have stuff separated in another function, or why you have not any vars. As a general rule, I try to work on spreads rather than pages where possible. I avoid also itemByRange() because of the strange plural object that it returns. Here's one (in my opinion, in any case) cleaned script:

    var folder = Folder.selectDialog(),
        files = folder.getFiles("*.INDD"),
        destination_doc = app.open(new File("c://users//user//desktop//TOC.indd")),
        source_doc, i, j;
    
    for (i = 0; i < files.length; i++) {
        source_doc = app.open(files[i]);
        for (j = 0; j < source_doc.spreads.length; j++) {
            source_doc.spreads[j].duplicate(LocationOptions.AT_END, destination_doc);
        }
        source_doc.close(SaveOptions.NO);
    }
    
    destination_doc.close(SaveOptions.YES);
    

    See if you have better luck with it.

    Jeff

  • Why won't this processor?

    I thought it would be good to replace my current processor 2.0 ghz... so I bought an AMD Phenom II x 4 965 processor Quad core (Black edition).

    So makes it a plug as indicated on the site to upgrade hp for my model of pc and made sure it was socket3...

    Then during the installation of this new processor, a message came on the screen saying it is NOT supported, and my PC is going to be shit down.

    Any help regarding, why is that happen and a difficulty as possible?

    I thought about it... it comes to 125w processor... my system can only top to 95w * facepalms *.

    Now to try to get an Exchange... lol

  • I have a Dell Inspiron 531, I can't Panda titanium to download when I put in the disk drive. Why the habit of this work? I don't have an error message, but my computer says that there is a threat in my computer.

    I have a Dell Inspiron 531, I can't Panda titanium to download when I put in the disk drive. Why the habit of this work? I don't have an error message, but my computer says that there is a threat in my computer.

    http://www.pandasecurity.com/homeusers/support/

    Link above is Panda Support for installation issues, etc...

    http://support.pandasecurity.com/Forum/

    Forums of users Panda at the link above.

    They will help the Panda support above links.

    See you soon.

    Mick Murphy - Microsoft partner

  • I copy student PS CS6 which works fine except when I'm disconnected from online, why is this and what can I do to make this work if the connection is lost. In addition, everything will work OK if I update to Windows 8 for windows 10?

    I copy student PS CS6 which works fine except when I'm disconnected from online, why is this and what can I do to make this work if the connection is lost. In addition, everything will work OK if I update to Windows 8 for windows 10?

    Yes, Photoshop should work fine without the internet connection, as this is the standalone version.

  • gotoAndPlay: why the habit of this work - it should be simple!

    Why does this work:

    gotoAndPlay ("CS1_2A");

    but this is not:

    var destFrame:String = "CS1_2A";
    gotoAndPlay (destFrame);

    var destFrame:String = "CS1_2A";
    _root. gotoAndPlay (destFrame);

  • Why is this work not running?

    Why is this work not running?
    SQL> BEGIN
      2  DBMS_SCHEDULER.RUN_JOB('EXCHANGE_PART_JOB');
      3  END;
      4  /
    BEGIN
    *
    Error in line 1:
    ORA-00911: invalid character.
    ORA-06512: in "SYS.DBMS_ISCHED", line 150
    ORA-06512: in "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: in line 2
    This work follow these steps:
    CREATE OR REPLACE PROCEDURE Exchange_Partition IS
    Sql_Exchange VARCHAR2(2000);
    BEGIN
    Sql_Exchange := 'ALTER TABLE HR.GPS_LOG_HIS EXCHANGE PARTITION '||
    'udp_part'||TO_CHAR(SYSDATE-1/24,'YYYYMMDDHH24')
    ||' WITH TABLE HR.GPS_LOG';  
    EXECUTE IMMEDIATE Sql_Exchange;
    END;
    /
    Use the following program:
    BEGIN
      DBMS_SCHEDULER.create_program (
        program_name        => 'exchange_part_prog',
        program_type        => 'STORED_PROCEDURE',
        program_action      => 'EXCHANGE_PARTITION',
        --Use a database directory to replace the OS directory.
        number_of_arguments => 0,
        enabled             => TRUE,
         comments            => 'Program to exchange partitions for hr.gps_log_his table or other tables
                                 use a shell script.');
    END;
    /
    Use the following code to create the work:
    BEGIN
      DBMS_SCHEDULER.create_job (
        job_name      => 'exchange_part_job',
        program_name  => 'exchange_part_prog',
        schedule_name => 'exchange_part_hourly_schedule',
        enabled       => TRUE,
        auto_drop     => false,
        comments      => 'Job defined to exchange partitions for gps_log_his table or orhter tables.');
    END;
    /

    Ok

    ORA-14099: all rows in the table are not eligible for the specified partition
    Cause: There is at least one line in the non-partitioned table which does not qualify for the partition specified in the PARTITION of EXCHANGE ALTER TABLE
    Action: Ensure that all the lines in the segment qualify for the partition. Perform the operation table alter with the NO CHECK option. Run ANALYZE table VALIDATE on that partition, namely the invalid rows and delete them.

    I think you should check the data in gps_log, some lines must belog to another partition?

    Concerning
    Peter

  • I have a little problem with my HP KU0841 keyboard I used to be able to hold two keyes to get the symbol for the pound sterling but it won´t work now all the ideas that I hit to stop this work?

    Can anyone help please.  I used to be able to get the symbol for the pound Sterling by pressing ALT and 0163 at the same time, maybe you'll know

    That's how you used to make the binary code on non-electric machines punch original card.  This will make me sound old?

    It's very frustrating that nothing bought here in Spain is not consistent with the rest of Europe, it is purely for the Spanish market.  I need to use this and other symbol that don't appear on my keyboard, but it is very - very sensitive touch and I think I must have hit another function key for stopping this work but can find nothing written on the computer and the manual was not in the box. as usual.

    Please let know us if possible thank you.

    Start > all programs > Accessories > system tools > character map

    http://symbolcodes.TLT.PSU.edu/accents/Charmap.html

    You can drag the key and drop it in your report or use the code indicated in the bottom right of the application

    Key codes Alt Windows

    http://symbolcodes.TLT.PSU.edu/accents/codealt.html

  • I have two laptops with windows 7 Home premium and the other with the profession of windows 7 Why windows won games ' are working on professional software

    why they do not work on windows prfessional

    It would also be interesting to know if the two laptops have the exact same system and graphic specifications.
    There is nothing different in the two versions of Windows that would affect the games.

  • My 'paid' version of Roboform, (v. 6.10.2) works with FF v. 3.6.17, so why it is not working in FF v.4?

    I have a copy of 'pay-for' free and Roboform, (v. 6.10.2) which works just fine on Firefox v. 3.6.17. But it does not work on Firefox version 4. I won't buy another version of Roboform to use on FFv4. That's happened? Why it doesn't work anymore?
    I can't afford to buy a computer one another, newer, or I wish.
    I downgraded to FF v. 3.6.17 and Roboform v. 6.10.2 works very well.
    Please tell me what you have changed between FF 3.6.17 in v. 4 v. to make Roboform v. 6.10.2 to stop working.

    RoboForm should support Firefox 3.6. * in general, and no specific security for Fx 3.6 so this update should work if it supports 3.6.17 and earlier versions.

  • Device - Why won't my ipad connect/load from my pc?

    Why won't my ipad connect/load from my pc?

    Hello

    1. What is the brand and model of the iPad?

    2. what exactly happens when you connect to iPad?

    3. you get any error message?

    4. what operating system is installed on the computer?

    5. don't you make changes to the computer until the problem occurred?

    I suggest that you try to run the Fixit tool from the link below.

    Hardware devices do not work or are not detected in Windows:
    http://support.Microsoft.com/GP/hardware_device_problems

    Hope this information is useful.

  • Is - will this work with Thunderbird V.29 Beta lightning?

    I tried to install Lightning via the function "get module", and he let me. I restarted, and the timetable given. but when I tried to create "new" or "new missions", all the commands to create new tasks/events appear in gray and do not work. Is - will this work with TB V.29 Beta lightning? If Yes, what should I do to get the grayed out 'new tasks/events' orders for work? If it is not fully operational with TB V.20 beta, why it let me install the add-on (who appears intuitive)?

    Versions of Thunderbird are still based on Tb 24 because the current is 24.5.0 as to why version 2.6.4 is served on https://addons.mozilla.org/en-US/thunderbird/addon/lightning/

    Beta-testing of Thunderbird builds that are built to a fine QA, to the appropriate version of lightning as it is for 29,0 Tb 3.1b1.

  • I selected messages in my Inbox. This works, but TB also put a copy in my "sent" folder.

    I'm on tuberculosis 24.4.0 and in my account setup, I selected messages in my Inbox; This works, but TB also put a copy in my "sent" folder. Why and how do around him? Some levels of return, I always had to copy the responses of my folder "sent" in my Inbox so that they could be strung together. As the email will now appear in both files, when I delete the message in the folder "sent" - of course that one of Inbox disappears too.

    AHA - that's all - I had the server out of gmail at the top of my list of servers. It removed and now using comcast outgoing server. Thanks to a bouquet. Problem solved

Maybe you are looking for