How to find out Skype account name

Preface: Sorry, I think this is really simple thing but I tend to be verbose when I'm trying to describe the issue.  How would I find out what is my Skype account name? Or more precisely the login name? (I mean of course my own name is on the accout, but I want the "account" name, not the name on the accout, heh) I have an old hotmail account, which has become live/messanger/microsoft account and now after Messanger was removed, Skype account as well. I can login into any of these by logging from the Live/Microsoft account, but what is my Skype account if I want to login using that? On Skype program and website, both list my hotmail address as well as "live:hotmailaddess" part before @ character. But I can't login to Skype using the address, "live:address" or just "address". I can't find anything else on the pages. I tried logging out from the website and then using the recovery option "I want to find out my Skype account" (the website is in Finnish so my translation might not be accurate to what it actually is in English). I typed in the hotmail adress many times since the it asked it for many times a row and continued the steps, finally I typed in the address and capcha , then again it asked the address. I think I made a mistake there, because I think it actually wanted on the last time the alternative address. The website was not too clear about it specially since it wants the address so many times. It displays only a small portion of it and since my alternative address is practically identical to the main address, just an underscore is changed to hyphen, well...So finally it displayed "IF the account address is xxxx for whatever a code has been sent to it". Yeah well since I guess typed in the wrong address, I've received nothing on either. This whole ordeal started today few hours ago when  I tried to login to the **bleep** thing. I updated the Skype program, since an upgrade have been around for some time now, and since it always resets the autologin information, I had to manually type them in, and it kept asking for alternative verification address or phone number. There was no way to bypass that. Just to make it clear, it wanted me to give such info, not use the alternative thing since so far I've never given any alternative ways to login or reset account.
Somehow at first I was able to finally get in without giving any alternative info, I kept trying to login over and over, occasionally I tried to login using the "Skype account", but since I don't know the account I could only login using the Live/Microsoft account. Then I logged off from the program, and after that I tried to login back, it wanted to manually login again, and it kept asking from the alt details and I couldn't anyhow bypass that. I also tried logging into Hotmail/Outlook.com from the website as well as Skype(from website), both ways wanted the info but to both I finally somehow managed to get in. I mean the websites, logging inside the program failed all the time. Anyway finally I remembered I had made the second account so I figured I give it as alt address. I got that thing in OK, the second address just has hotmail.com, so I could easily login there by another browser and that didn't want any extra verifications. But before this last attempt, I had used the same "I want to know my Skype ID" feature from the program. To clarify, before linking the second address to my main address. But since I was having so much trouble with getting into Skype(and as well as it's Messanger part) I think I didn't check them out. Plus I had trouble getting into the mail as well, although I finally got in. Soooo...the two mails received in the primary address, "Your Skype Name token" messages which have a link and verification number, they won't work anymore. I try either, and neither works. My guess is they got invalidated by the third request or by either finally adding the alternative address. AND, since the third time I mistook it asking the same **bleep** address for the third or fourth time in the last request and gave the main address not the alt address it probably didn't send the code anywhere. And now I tried again the thing but it refuses to go any further than the first step, because it says I've used it too often in the last 24 hours. So, surely the account name should read someplace?I repeat, I can perfectly login into Skype in web and the program, I know the password and hotmail addresses and all that, but the two types of accounts it lists after logging in, neither work for login. Or does it mean I don't actually have a Skype account, just the Live/Microsoft account which I can only use to login to Skype using that other option? I'm starting to think this is the case.

I am definetly starting to think I don't actually have a skype name. Now I tried again since the 24 hour restriction went off. First from Skype webpage ->sign in -> forgotten your skype name? ->there I enter my hotmail address ->send mail ->then it moves off from Skype and into account.live.com, where it's no longer asking anything Skype related: Why are you having trouble signing in?I forgot my passwordI know my password, but can't sign inI think someone else is using my Microsoft account
So I obviously choose the second option last time since it's the closest available option for my problem, but then it gives me options: Get back into your accountWe can help you reset your password and security info. First, enter your Microsoft account and the characters shown. So again it asked for my address and captcha, and after that I could choose to "verify my identity" by choosing the alt email, but since that is slight garbled and cannot be differented from the primary address, and I was already so pissed off from typing the same address over and over, so at that point I mistakenly wrote the main address again where it wanted to verify it by asking the whole alternative address and thus it never sent the account reset email for the Microsoft/Live account. But since I originally had no problems with that Microsoft account, all I wanted was the "Skype Name", and since the only way to try to find it jumps into the restore Microsoft account thing,  I'm assuming I don't have one which I could use to login to Skype, so all I can use is the Microsoft/Live account.

Similar Messages

  • How to find out the table name

    hi,
    how to find out the table name in which the data from a particular structure in a particular screen is saved,
    please tell me the procedure to find out the table name for saving the structure data that is inputted at runtime.
    Thanks,
    chinnu

    Hi Chinnu,
    Below are the tables that are referred to find out the table names
    DD02L Table contains the SAP Tables.
    DD02T Table contains the SAP Table Texts.
    DD01L Table contains the Domains
    DD01T Table contains the Domain Texts.
    DD03L Table contains the Table Fields.
    DD03T Table contains the Table Field Texts. (Language Dependent)
    DD04L Table contains the Data Elements.
    DD04T Table contains the Data Element Texts.
    DD05s Table contains the Foreign Key Fields
    last words with L and T only. L->Database Fetch T-> Text
    And the procedure to retrive the table name is as follows
    1. Go to se11
    2. Enter table name DD03T and execute
    3. In the next screen you can find Tables, fields, test etc. there you can enter the field name in the fields 
      and execute.
    4. you can get all tables which contains the field.
    I hope this will solve your problem
    Regards,
    Chandru

  • How to find out the file name

    Hi,
    In selection screen (parameter) user will give input TXT file from presentation server to upload to SAP. I need to capture the file name only but not the path and need to concatenate with date stamp and need to download error log in XLS file to presentation server.
    How to find out the file name from selection screen?
    I searched SCN threads but not found relavant solution.
    Thanks,
    R Kumar

    Hi
    This code gets only filename from selection screen :
    REPORT x.
    PARAMETERS p_file(100).
    DATA : gv_full_path LIKE  ibipparms-path,
           gv_full_path_string TYPE string,
           gv_filename(100),
           gv_file_ext(3).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Ask user to select file with a popup :
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = gv_full_path.
    Get filename from path :
      gv_full_path_string = gv_full_path.
      CALL FUNCTION 'CH_SPLIT_FILENAME'
        EXPORTING
          complete_filename = gv_full_path_string
        IMPORTING
          extension         = gv_file_ext
          name              = gv_filename.
      CONCATENATE gv_filename '.' gv_file_ext INTO gv_filename.
      p_file = gv_filename.
    I hope it helps.

  • How to find out the account group information in customer master record?

    how to find out the account group information in customer master record?
    in which tab? thanks in advance

    Hi
    Go to XD02 and select the Extras from the main menu , you will find Account group info -> click on the No.ranges.
    reward if it helps
    SR

  • Transaction IW32.How to find out the person name.(Last changed By)

    Hi all,
    When i executed the transaction IW32.Its displays changed by and created by fields. please any body can tell me how to find out the person  name who had made last change with respect to the field changed by.
    Please tell me the table and field name for the field last changed by......
    Regards,
    Munna.

    hi,
    check the table AUFK field AENAM for the order number(AUFNR) in IW32..........

  • How to find out the administrator name

    How to find out my administrator name to unlock the parental control .

    Look in the Apple Menu, in System Preferences, under the Users & Groups pane.
    It should list all your users, by name.

  • How to find out the infospoke name for an existing infoobject?

    Hi,
    Could any one pls tell me how to find out the existing infospoke name for an infoobject?
    i've tried with where used list but its not coming....can any one pls suggest
    Thanks,
    Suri

    Hi,
        Check in metadata repository for that infoObject.
    If you are still not able to identify, goto RSBO tx and press F4.
    You will get the list of Infospokes available.
    Go in each and chk from the General Tab, if the infoObject is available in the source system.
    Regards,
    Balaji V

  • How to find out sub site name from which sub site template is created - in solution gallery

    hi,
     i am having an issue in my "save site as a template". i have created  a subsite few weeks back with doc libs and  splists, disc.forum and  based on the template subsite I have created new subsites. now 
    as  per my new requirement i need to add new  doclibs and few columns in these doc lib. But I am unable to find which sub site was taken as a template.since i have many  subsites with different names, I forgott
    to make meaningful names, i gave some datetime for the templatesubsites,
    like project_27_jul_2pm,project_20_jul_7pm, etc etc.
    So would like to know, is it possible to find out from which subsite I have taken/prepared  the template subsite.
    any APIs are available or any power shell scripts. such that i can find  out from which subsite i have created this  sub site template.

    check this
    http://social.msdn.microsoft.com/Forums/en-US/3c492adb-e7cb-4f5c-8c29-386a21c3498e/how-to-find-out-a-list-of-sites-created-from-a-template?forum=sharepointgeneralprevious

  • How to find out the printer name for the Idoc

    Hi guys
    I want to find out the printer name for the Idoc,,some default printer is attached for one idoc,then how can we see the printer name for this idoc.
    Regards
    Madhoo

    Hi,
    For ALE/IDOC the  medium will be either ALE or EDI but not printer.So it might be wrongly attached.As such there won't be any printer attached to idoc.
    Regards,
    Nagaraj

  • How can find out the User name?

    Hi Gurus,
    I have created one sales order with my user name. some one has changed order quantity in that sales order, so can u tell how can v find out thier user  name?
    CHeers,
    Sumith

    Hi Sumith,
    Go to VA02 and click on Environment at the top and click on changes. Now based on your line item where you feel changes have been made give your item number and tick overview , and additional info and execute.
    Now double click where you want to drill down and find out for the user name.
    I am sure this will help you. If it does dont forget to reward points for contribution.
    Regards
    Ravi

  • How To Find Out Current Day Name

    Hi,
    How To Find out Today Name in OBIEE11g.

    Use formula DAYNAME
    ex: DAYNAME("Close Date") or DAYNAME(current_date)
    Pls mark correct/helpful also for your old posts !!!
    If given info is not helped pls update with your solution for these posts
    How To Calculate TOPN variable...
    Re: Top N Issue...
    Issue with Dyamic varibles.
    How To Create Global Filter...
    Edited by: Srini VEERAVALLI on Dec 17, 2012 10:05 AM

  • HOw to find out a report name when you know only the name of background job

    Hi experts ,
    my question is i need to find out teh report name for which i knew only the background job name of the report .
    thanx
    Venky.

    Go to tcode SM37->Give job name and execute->choose tool bar button STEPS (Disply Steps list) ->Then you will get program or command

  • How to find out which account is beeing accessed by EWS?

    Hi all,
    wondering if there is any way we can find out which account (user and shared mailbox) is being accessed by using EWS?
    We would like to get a list with these users.
    Powershell maybe?
    thanks!
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work

    That's gonna be a fun thing because Outlook and OWA use EWS for some functions so regular Outlook users will show up in EWS logs. but this should help
    <header class="tweet-header" style="color:#292f33;font-family:Arial, Verdana, sans-serif;font-size:12.7272720336914px;line-height:16.7151393890381px;background-color:#fcfcfc;">
    </header>http://blogs.technet.com/b/caseys/archive/2012/01/23/troubleshooting-ews-requests-using-iis-logs-with-logparser.aspx
    DJ Grijalva | MCITP: EMA 2007/2010 SPA 2010 | www.persistentcerebro.com

  • Hi, How to find out the program name with short description?

    Hi Experts,
      I've a doubt regarding reports.
       I've some short descriptions.I've to find out the Technical Name of the program    using that Short descripns.Is there any transaction code available to check this
      I've tried in t.c se80.But i could not find the respective program names.
      Please help me in this regards.Its an urjent issue.
      Thanks in advance.
    Regards,
    Rekha.

    hi rekha,
    1)Goto SE84(Repository InfoSystem) tcode.
    2)In Repository Info System node, Select Program Library.
    3)Then Select Programs.
    4) And enter ur description and u press F8.
    5) u can search program name based on description, package and many othet options. check it out.
    U can find many programs with ur entered pattern.
    Select ur program.....
    Reward me if useful,
    Harimanjesh AN

  • How to find out skype user sending me sms?profile....

    Hi All.
    Its of high importance for me to find out the user id of an unknown person sending my wife SMS's through SKYPE. The number showing up from the sender is +442032892491. Upon googling, i found that this number is linked to Skype so if any user sends a sms without setting a number in profile, the default number shows up as above.  Its very important for me to know who has been sending messages to my wife mobile. Can any one please suggest. I also tried sending a message back from my wife mobile to the same number +442032892491 but not sure if its actually reaching there.
    Pls help.
    Regards
    Vishal

    I am definetly starting to think I don't actually have a skype name. Now I tried again since the 24 hour restriction went off. First from Skype webpage ->sign in -> forgotten your skype name? ->there I enter my hotmail address ->send mail ->
    then it moves off from Skype and into account.live.com, where it's no longer asking anything Skype related:
    Why are you having trouble signing in?
    I forgot my password
    I know my password, but can't sign in
    I think someone else is using my Microsoft account
    So I obviously choose the second option last time since it's the closest available option for my problem, but then it gives me options:
    Get back into your accountWe can help you reset your password and security info. First, enter your Microsoft account and the characters shown.
    So again it asked for my address and captcha, and after that I could choose to "verify my identity" by choosing the alt email, but since that is slight garbled and cannot be differented from the primary address, and I was already so pissed off from typing the same address over and over, so at that point I mistakenly wrote the main address again where it wanted to verify it by asking the whole alternative address and thus it never sent the account reset email for the Microsoft/Live account.
    But since I originally had no problems with that Microsoft account, all I wanted was the "Skype Name", and since the only way to try to find it jumps into the restore Microsoft account thing,  I'm assuming I don't have one which I could use to login to Skype, so all I can use is the Microsoft/Live account.

Maybe you are looking for

  • Web site with java benchmarks for various cpus?

    Is there a web site that shows java benchmarks run on various P4 and AMD cpus, so that it is possible to see the relatively speed at which java runs on these cpus?

  • Swap file usage

    Hi We have recently updated a MII Server from Netweaver CE 7.1 SP4 with MII 12.1.5 (Build 86) to Netweaver CE 7.1 SP5 with MII 12.1.9 (Build 109). The MII server is running on a Windows Server 2003 64-bit with 8GB of RAM. After the update the swap fi

  • Bw table names required

    i require 1>     Table name for new requests loaded in ODS / Functional Module. 2>     Table name for number of packets loaded in each request. plz help..

  • Slices/lines in saved pdf files

    Hi, I've been saving my pdf files from illustrator cs5 and every once in a while the saved pdf shows these lines slicing through parts of the image. They kind of look like the box outlines when you select an object in illustrator. I didn't think they

  • Web module crashes during export OR upload (Mac OSX 10.5x)

    Been happening more and more for some reason. The number seems to not matter, though typically there are 700 to 1400 images to either export or upload - and both crash LR. I'm on a Mac (OSX 1.5x) running LR 3.2. Actually, we're running TWO macs, and