Is there a way to log into MY ms account that is l...

Hello
Today i planned to setup skype on my brand new xbox one. trouble is, when i made my GT my mother realized that if my siblings were going to play online as well she wanted it linked to her email. they never used my xbox 360 and she never uses that email account anymore. i made my own skype account from my microsoft account once messenger went down. so here is where my problem comes in.
1.my GT is linked to my mothers email, and when signing up for skype on the xbox i figured it would have an option to sign into whatever account you wanted (ms account, facebook). no. it made a new account for the gamertag. and now i have 0 contacts.
2.i tried unlinking the account but it says "contact customer support" and it (the page i was brought to)says it could be because of a subscription on the account (ie the free 100 minutes of calling courtesy of xbox live)
3.the password to change primary emails is unknown. no seriously. it wont take either password for the parent email or my email. i dont know what it wants.
 to recap:
my mom linked her email to my GT during setup for live a few years back and now it just got registered as a skype account under her ms account. i have my own account with friends that for some reason refuses to be used on the xbox one under my gt or as a primary email on skype. the password for primary email change is unknown because it is being a bit vauge (is it my email password or the non exsistent skype password?)
its just getting ridiculous now...
can anyone help? i tried switching emails for my gamertag, but there is just so many freaking accounts linked to them. seriously, why does my security proof need 5 extra security proofs? so after 5 minutes of switching proofs and emails and all that stuff im back to square one. 
any help is appreciated.

Hi,
Did you ever think about transferrring your GamerTag to your own Microsoft account email? Ideally that should be the one you were using to sign in to Messenger (and now to Skype) as well. More details here: http://support.xbox.com/en-US/my-account/manage-gamertag-and-profile/switch-gamertag-to-different-mi...
Once you've done this sign in to your Xbox with your own Microsoft account and the next time you use Skype for Xbox One your former Messenger/now Skype account with all your contacts will be used.
Follow the latest Skype Community News
↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

Similar Messages

  • Is there any way of logging into Cloud from Mac OS X 10.10?

    I have a problem with Mac OS X 10.10 and Cloud. It does not log in and the Cloud window is empty. I know 10.10 is not "supported" still but is there a way to logon to Cloud at all. As I said the window is empty and spinning circle is doing it´s thing in the window.

    1. Click here and buy the DVD; you may want to install more RAM in the computer.
    2. There is no Boot Camp Assistant for 10.4.11, except for an long-expired beta.
    (109961)

  • HT1212 i went over all the steps i am logged into my itunes account that ipod is registered under and cant access ipod

    i can not reset my ipad
    and am locked out and forgotten password

    You may need to put the iPod into recovery mode in order to be able to be able to reset it via your computer's iTunes : http://support.apple.com/kb/ht1808 - you should then be able to restore/resync your content to it

  • Jabber for windows only allows the logged-in AD user to log into his jabber account only

    Hello gang,  
    I have this strange issue with jabber for windows 10.5.  So if you log into a pc with your microsoft active directory domain account and try to log into jabber with the same user credentials, you can log-in fine. However, if you try to log into another jabber account that is different from the AD account that you are logged into the pc with, you will not be able to log into jabber.  You will just get an error from jabber that says that your credentials are incorrect. I actually deleted the jabber folders in the  local and roming data folders, thinking that maybe it was caching the password but even that did not help.
    Has anyone seen this problem before?

    I've also experienced this.  If you are logged in as a local user on the computer you can switch to any other Jabber user, but if you are logged into your computer with a domain/AD account you cannot login as a different user, only the domain user that is signed into the computer can login to Jabber.  Does anybody know of a workaround or fix?  Is this a setting that can be changed?  

  • Is there a way to view texts from an account without being on the account? im trying to see who my husband has been texting but i am not on his plan

    Is there a way to view texts on an account that im not on? its my husbands account

    Yeah check on the phone. You can't get a transcript without a court order.
    Message was edited in accordance with Verizon Wireless Terms of Service.
    Message was edited by: Admin Moderator

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to log in using a skype account, not a Microsoft one?

    I can only log into the app using the Microsoft account, however I have most of my skype contacts in my old skype account, is there a way to log in to the app using the skype account instead?

    Hi and welcome to the Skype Community,
    I'm afraid you can only sign in to Skype Translator using a Microsoft account. You can - however - link your Microsoft account to your "old" Skype account and then juse Skype Translator that way. Keep in mind though that you will lose the contact list of your Microsoft account based Skype account that way. More info on account linking: https://support.skype.com/en/faq/FA12060/how-do-i-link-my-skype-and-microsoft-accounts

  • I just got a new iPod and computer, and when I logged into my iTunes account my music and movies were there but my apps were not.  How do I get my apps back

    I just got a new iPod and computer, and when I logged into my iTunes account my music and movies were there but none of my apps were.  How do I get my apps back?

    See:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Other than allowance is there a way to put $ into my kids itunes account

    I like allowance but I am not up for a regular monthly thing...is there any other way to put $ into my kids accounts?

    you could buy a prepaid card?

  • Is there any way I can convert previous apple accounts into my most recent one? As I have forgotten the older accounts passwords.

    Is there any way I can convert previous apple accounts into my most recent one? As I have forgotten the older accounts passwords.

    No, all content (music, books, movies and apps) bought from iTunes and App Stores using one Apple ID cannot be merged or transferred to another Apple ID.
    To retrieve your password.
    https://iforgot.apple.com

  • Is there a  way to merge two separate iTunes accounts into one?

    Is there a  way to merge two separate iTunes accounts into one?  I don't want to "share libraries."  I just want one account that once stemmed from two seperate accounts and has all of the purchases and history.  Thanks for any help!

    No.

  • My iPhone recently got smashed and I've been receiving some very important messages that I cannot view. Is there a way to log on and see my phones messages from a tablet/computer?

    My iPhone recently got smashed and I've been receiving some very important messages that I cannot view. Is there a way to log on and see my phones messages from a tablet/computer?

    iMessage can be viewed and responded to on another Apple device.  IPad, iPod or Mac computer.
    regular SMS from non iPhone users will not show and you can't send to those phones.
    bummer about the phone....

  • Is there any way to retrieve photos from a 5c that has gone into recovery mode?

    is there any way to retrieve photos from a 5c that has gone into recovery mode?

    No, by the time its in recovery mode it's too late. The contents of the phone are gone. Did enable any of the ways that Apple provides to back up photos?
    Backup the phone to your computer
    Automatic daily iPhone backup to iCloud
    enable Photo Stream
    Copy photos to your computer using a USB cable and a compatible photo management utility on your computer
    Enable Photo Sharing
    Enable Photo Library backup
    OR any of the 3rd party photo management solutions, such as Google Picasa, Google+, Facebook, Shutterfly?
    OR any of the cloud sharing services such as box.com or dropbox?
    If you have set up any one of these your photos can be retrieved from it.

  • Is there a way to back up my imac computer that isn't fully functional? I can get into safe mode but its running really really slow.

    Is there a way to back up my imac computer that isn't fully functional? I can get into safe mode but its running really really slow. I recently upgraded to Yosemite when shortly it slowed down.

    Read the comments in this thread--> https://discussions.apple.com/thread/6411339

  • Is there any way to break into an ipod after it has been disabled

    i need help is there any way to break into an ipod touch after it has been disabled

    Maybe the CIA could get data from an disabled iPod.
    It is easy for anybody to erase the iPod and regain use of the iPod for their own use.  Just place in recovery mode and retore.

Maybe you are looking for

  • Wireless connection problems with iTunes

    After installing iTunes for my PC(using Windows Vista if that matters). Directly after installing iTunes my wireless connection works. Once I start importing my music into iTunes I lose my wireless connection. I can still see the wireless networks bu

  • Multi-page form from single PDF form

    I need to create a 50 page form with calculated fields.  Each page is basically the same except for a couple calculations.  Is there a way to make this from a single form?  I have one page complete and would like to copy it and the calculations so th

  • Changing hex string display format

    When a string control is in hex display format any data typed is displayed in groups of 2 bytes like AABB CCDD. Is there any way to display them in separate group of single bytes like AA BB CC DD?

  • I made videos on iMovie for iPad, then I accidentally deleted the app. Can I get the videos back?

    I accidentally deleted the app, which had precious videos on it. Now I don't know where to find the videos, but I want to get them back. How do I do that?

  • MBP shutting down wireless

    My macbook pro will repeatedly shut down my wireless router causing me to have to reconfigure it every time i connect to it... my friends can use their pc's on it with no problem... i am completely lost on the wireless part... please help