Security Info issues

Hi,
I am trying to log into my Hotmail account on the PC and it keeps requesting to verify my security info by sending the code to an email that is unknown to me - how do I change that email address or remove it?
am I able to get this security info sent to my mobile instead?
my email works fine on my phone - however, it's giving me grief when I try to log in on the PC.
HELP PLEASE

Hello,
Please see
Forgotten password or other sign-in problems.
Or, ask in the
Outlook.com forum on Microsoft Community.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book:
Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • Issue with updating Security Info on my Microsoft ID

    I am stuck in a vicious circle trying to sort an issue with my Microsoft account.
    I need to remove an old, defunct, email address and add a load of new security info however, depending on whether the date format on the page I keep being directed to is UK or US, either the updates haven’t happened or they won’t
    be happening until next month – which seems ridiculous!
    I’m trying to sign up for a Windows Store developer account to publish a Windows 8 app. I’m using my MSDN subscription to register for this (for free) but there is a step I can’t get past because it insists on sending a code to
    my old email address – to which I have no access. It is picking up this address from my Microsoft Account Security info – however, I updated this info weeks ago. This is the screen I see (I’ve blurred out some of it as it seemed foolish to publish all my security
    info J
    It says my old address will be removed on 03/04/2013 and my new info added on that same date. Does anyone know if this is UK date format 3<sup>rd</sup> April – in which case it’s a long wait or a US date 4<sup>th</sup>
    March in which case it didn’t happen? I’ve tried phoning 5000 and the Microsoft Customer support lines but neither of them have a clue where to start. They just keep asking me if I’ve forgotten my password – which I haven’t.
    Does anyone know how I can resolve this? My only option at the moment is to wait until 3<sup>rd</sup> of April and see if anything changes – which is not ideal.
    Cheers,
    Rob

    Hello,
    The Microsoft account forum has been retired and all account related questions must now be asked online
    here.
    Select the issue you need help with and fill out the requested details on the next page.
    You need to be signed in with a Microsoft account to access the form. If you are unable to access your primary account, you can use an alternate account (if you have one) or create a new one at
    https://signup.live.com
    You can read further information about blocked accounts
    here.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • WCF WSDL has no security info, but service uses SSL

    We need urgent help.
    Basically I am developing a Web Service client app. The service is written in .Net and uses SSL, but the WSDL does not contain any security info. We got one .pfx file and three .cer files. I followed [Importing PFX files into Java keystores|http://i-proving.ca/space/Technologies/JCE/Importing+PFX+files+into+Java+keystores] to convert the certificates to X509 format. Then I imported the PFX certificate into the keystore of my glassfish v3 (alias is s1as), the other three into the truststore. After passing the handshaking, our application gets "javax.xml.ws.soap.SOAPFaultException: No credentials found by which to authorize the user Missing authentication credentials [cert]". The serer side log shows that they received our HTTP requests and the HTTP header was good, however the SOAP envelope was not decrypted. How can I manually modify the WSDL file so that the NetBeans IDE will guide me to configure the security issue? I use NetBeans 6.8 and Glassfish v3.
    Thank you for your help in advance.
    Daniel

    have you try going into iTunes store on your computer and try download app there?
    it may say something.
    i got the same "Security Info Required" too but on iphone4S, so , now i cannot download any app too
    https://discussions.apple.com/thread/3922351

  • Howto proces SOAP Header with security info

    My incoming Soap messages contain security info in the soapenv:Header part.
    However, I only need the contents of the Body element.
    If I do NOT handle the Soap Message, then an Exception is thrown: something like: 'Do not know how to handle MustUnderstand'.
    So something must be done with the Security info in the header, but I do not know how. Do I have to remove the header completely in the Soap handler, after checking the singning? If somebody can point me to some examples of Soap header processing for this case it would be helpful.
    kind regs.
    Harry

    Hi Harry
    The header in Soap Messages is optional. Is is used to carry security information, that is security on the level of the Soap message. So when the header of an incoming Soap message is 'handled', the header is of no use any longer and can (must) be discarded. Indeed discarded, because the rest of the handlers don't expect a header in the Soap message. They extract the 'contents' from the body of the Soap message, and deliver that to you backend system.
    I will describe the header handling in the webservice: to get access to the Soap message in your code, you have to write a 'handler' Class. This Class should implement the Handler Interface or extend the abstract GenericHandler Class. To handle only the incoming Soap messages, the 'Requests', the method 'handleRequest' should be implemented. This handleRequest method has 1 parameter (mc) with type MessageContext. This parameter contains the original Soap message in Object format. You can access the original header information via:
    SOAPMessageContext smc = (SOAPMessageContext)mc;
    SOAPMessage message = smc.getMessage();
    SOAPPart part = message.getSOAPPart();
    SOAPEnvelope envelope = part.getEnvelope();
    SOAPHeader header = envelope.getHeader();
    With: Iterator iterator = header.getChildElements();
    you can navigate through the header elements and do whatever you like. If you decide that security info in this header does not match the contents of the body for instance, you can issue an Exception and log it.
    After processing the header you have to discard it with:
    header.detachNode(); and let your handleRequest method return 'true'.
    The rest of the webservice processing takes the contents from the body element, and delivers that to your application.
    To let you webservice make use of your Handler, you have to name it in the web-services.xml as follows:
    <webservices>
    <handler-chains>
    <handler-chain name="myChain">
    <handler class-name="a.b.c.MyHandler" />
    </handler-chain>
    </handler-chains>
    <web-service name="MyService">
    <operations>
    <operation ... handler-chain="myChain" .... />
    </operations>
    When the webservice 'MyService' gets a request, the handler 'MyHandler' is automatically invoked. you can have more handlers in a chain. Also you can declare more chains in your <webservices> section and refer to them from the <operation> elements.
    Items of interest:
    javax.xml.rpc.handler.soap.*
    javax.xml.rpc.handler.*
    javax.xml.namespace.*
    javax.xml.soap.*
    May be this of use for you :).

  • I've just updated my iPad2 to iOS 5.1 and now can't open MyWallet where all my secure info and passwords are held. HELP

    I've just updated my iPad 2 to iOS 5.1 and now can't open MyWallet where all my secure info and passwords are filed. HELP!

    The app hasn't been updated in almost a year, so it may not be compatible with iOS 5 or 5.1. They have next to no support information on their web site, so you may need to email them:
    [email protected]
    The normal route for a single app that won't launch is to remove and reinstall it, but that would probably lose all your information unless you have it synched to a computer. I'd suggest contacting the developer.
    Update: their Twitter feed says that they've had to do a number of updates for iOS 5.1 to fix an issue that was crashing all their apps under 5.1, and have submitted them to Apple. So stay tuned for a while and look for an update.
    Regards.

  • Im trying to reset my security codes but when i click send reset security info it doesn't send

    Help!

    Hey Winklestoo,
    Thanks for the question. If you are having issues with the security questions associated with your Apple ID, follow these steps:
    If you forgot the answers to your Apple ID security questions
    http://support.apple.com/kb/HT6170
    Reset your security questions
    1. Go to My Apple ID (appleid.apple.com).
    2. Select “Manage your Apple ID” and sign in.
    3. Select “Password and Security” on the left side of the page.
    4. If you have only one security question, you can change the question and answer now.
    5. If you have more than one security question:
              - Select “Send reset security info email to [your rescue email address].” If you don't see this link or don't have access to your rescue address, contact Apple Support as described in the next section.
              - Your rescue address will receive a reset email from Apple. Follow its instructions to reset your security questions and set up new questions and answers. Didn't receive the email?
    After resetting your security questions, consider turning on two-step verification. With two-step verification, you don't need security questions to secure your account or verify your identity.
    If you can't reset your security questions
    Contact Apple Support in either of these circumstances:
              - You don't see the link to send a reset email, which means you don't have a rescue address.
              - You see the link to send a reset email, but you don't have access to email at the rescue address.
    A temporary support PIN isn't usually required, but Apple may ask you to generate a PIN if your identity needs to be verified.
    Thanks,
    Matt M.

  • HT204088 my apps will not download because it asks for security info and whenever i type it in it never validates

    my apps will not download because it asks for security info and whenever i type it in it never validates. Can anyone help me?

    Hi..
    Perhaps a security code issue >  iTunes Store: My credit card's security code or zip code does not match my bank's records

  • HFM Access Security info thru API or Database?

    In HFM running in the system 9 enviornment - is there a way to access the security info thru an API or Database. This is info that typically is availiable in the security extract and contains info like
    !FILE_FORMAT=2.0
    !VERSION=9.30
    !FILE_FORMAT=2.0
    !VERSION=9.30
    !USERS_AND_GROUPS
    !ROLE_ACCESS
    etc.
    Thanks in advance for any insight.

    There is an item not really discussed in this thread which is OpenLDAP. Shared Services uses a product called OpenLDAP for certain tasks such as a repository for the Native Groups and Users. Additionally, if you have users tied in through a 3rd party sourch such as Active Directory, certain key information is found here.
    For instance, when you look at the Security Access tables in HFM, you will notice that it does not reference the usernames by username rather by a unique ID key. This ID key translates back to the information in Shared Services OpenLDAP database.
    This had the potential to causes issues when trying to make a development environment due to the fact the unique id's (SIDs) could be different for the exact same user. In order to retain security information between two different environments without having to redo the security, you have to synchronize the shared service databases to ensure the SID data was the same.
    Shared Services has an import/export utility which helps with this task; however, the old versions would not export the SID!!! (whoops). Fortunately, the newer versions of this utility do infact export the SID values if you request it to do so.
    In regards to the subject of this thread, you can get at the security information a few ways :
    #1 - There is a Java API for Shared Services. I've tried to make use of it; however, I've found it a bit more complicated than I would like so I do not use this method.
    #2 - Using the Application Client DLL's. There are vb samples of how to get basic information such as group membership, etc, etc if you have the SDK.
    #3 - Database direct. As pointed out previously there are unique tables for each application which hold this data; however, you will also need to interface with OpenLdap to x-ref the SID values to readable usernames/groups. In regards to this, I was pondering making a utility to do this for people if there was an interest. I need the data as I do a quarterly user audit and I would prefer to automate this as much as possible.....
    Edited by: beyerch on Feb 11, 2009 12:35 PM

  • How do i deal with 'security certificate' issues on my iPad2? I'm unable to answer the security questions that pop up when Im trying to download an app because the pop up does not load properly...

    Basically my Ipad2 stopped allowing me to go to sites such as Tumblr a little while ago. It wouldn't display the page properly because of 'security certificate' issues. This in itself would not have been such a problem, but when I went to the App store to try and download the Tumblr App, a pop up appeared asking me to answer some security questions before I could successfully install the App. However, the pop up would not display correctly because of 'security certificate' issues and as a result I can't download any apps from the App Store. Can anyone help with this??

    Well, I maged to delete some stuff, download the update...
    My Mac mail is still not ok. Still only displays today, yesterday and everything is the 16th of the month previous to this?
    All a bit strange to say the least any suggestons on how to resolve this.
    I now have a second issue in all my emails at the very top of each it describes in detail the full information of
              Delivered-To:  
              Received:  
              Received:  
              Received:  
              Received:  
              X-Received:  
              Return-Path:  
              Received-Spf:
              Authentication-Results:
              Content-Type:  
              Mime-Version:  
              X-Mailer:  
              X-Cloudmark-Analysis:  
    Surely this should not be displayed rather insecure I would think. Any suggestions on how to amend

  • Can we set up a forum for Security related issues?

    I know many of us think security is a Windows related issue, but from time to time there are security issues that may come up. I had a question so I looked and couldn't find a forum, so I posted in one of the OS X 10.6 sub forums.
    Thanks!

    I am a co-founder of Calendar of Updates http://www.calendarofupdates.com/updates/index.php?act=idx This is a site that is primarily a Windows based security forum (I switched about 4-5 years ago). Over the years, I've tried to grow the Mac side of our forum, but, as you may know, there is little or no interest in security within the Mac community. For many, the feel security is a Windows issue.
    It's a free site, so don't think I have a vested interest in growing the membership, I'm not an owner, either.
    I just created an *Apple OS X Security Issues* forum http://www.calendarofupdates.com/updates/index.php?showforum=209
    Right now it's an empty forum since it was created 10 minutes ago. Please feel free to join the forum and share security related issues and questions.
    I am not aware of any other forums that deal with OS X security issues
    exclusively, so this forum could be a good place to bookmark and visit from time to time.

  • Why do I have to enter all security info to download a free app AFTER I enter my ID?

    Downloadinf a FREE equalizer app and enter my Apple ID. The icon appears on my screen, then I'm "told" I have to enter all of my security info for the download to actually occur.
    TextFree assigns me a phone number just by downloading the app; why would a free music EQ require all of my info?

    Ok  I can understand the reason for additional security but the questions!!!!! When was I first kissed, which is my least favoutie car, what was the first album I owned.   I have no idea  yet I'm required to enter answers for storage and recall later.
    I suppose people are sad enough to remember all this - my password app is bulging already
    Why not allow people to add their own questions from their associated Mac
    Yes i can put fictitious answers on the iphone but i'm less likely to remember these

  • HT5312 I want to change my security questions, but the option" forgot your answers? send reset security info email to" doesen show even if I answer mor than 3 questions, it's bloked for 8 hours

    I want to change my security questions, but the option" forgot your answers? send reset security info email to" doesen't show, and after I answer 3 wrong questions, it's bloked for 8 hours, how can I change the answer to this questions If the link doesen show on the aplle wb page?

    The 'send reset info' only shows if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account. If it's not showing then that implies that you haven't got one on your account, and you won't be able to add one until you can answer 2 of your security questions - in which case  see if the instructions on this user tip helps you get the questions reset : https://discussions.apple.com/docs/DOC-4551

  • I can't received security info email to my mail

    i Forgot my security answers
    i send many time to reset security info to my verified email
    i can't received security info email to my mail
    cant help me pls

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (96914)

  • I can't receive security info mail

    I can't receive security info mail from appleid. I have tried many times, but still failed ( I have checked my gmail for 10 times at least...).

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (96914)

  • I cant find ( Send reset security info email )

    hello
    i forget answer of security question for my apple id then i find in apple support this link ( http://support.apple.com/kb/HT6170 )
    but in step 5 i cant find ( Send reset security info email ) link and in this site call if i cant find this link contact to apple support
    please help to rest my security question
    best regard

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    The people on these boards are neither Apple Support nor the Account Security Team. None of them can reset your questions for you.
    (114465)

Maybe you are looking for