Windows Phone 10 build 10051

Hello I am having some trouble with my Nokia Lumia 520. I can`t personalize my start screen and lock screen; another issue is that I can`t find the Spartan browser and battery saver does not enable. please answer me.
contact me with [email protected] or [email protected]

Build is only on the fast ring. Afaik there is no slowring build right now.
Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

Similar Messages

  • Updating Windows 10 for phone build 10051 ???

    I coundn't find "Insider Slow" to update WP for phone build 10051. Please help me how to update.
    brianle
    Attachments:
    10352957_1064937440199590_4793239649891249447_n.jpg ‏22 KB

    Build is only on the fast ring. Afaik there is no slowring build right now.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • PhoneGap Build plugin always sets debugging which breaks Windows Phone XHR

    I've traced a problem with XMLHttpRequest on PhoneGap for Windows Phone 8 to the debug setting on PhoneGap Build (turning it on causes XHR to silently fail). Unfortunately, the PhoneGap Build component for Dreamweaver always turns debugging on. It appears to take no ntoice of the ProjectSettings file that is created in the project folder (I have set "debug":false with no effect) and turning debugging off on the build.phonegap.com site also has no effect on the next build initiated by Dreamweaver.
    The Dreamweaver PhoneGap component needs to be adjusted to take notice of the ProjectSettings for debug and to update these according to the actual settings on the web site. Alternatively, expose the debug setting in the PhoneGap build panel.
    I have had to abandon DreamWeaver for Windows Phone builds altogether.

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • Can i use unc or ucwa web api to build android and windows phone app ?

    is there anyway to develop custom client application using unc web api ( android, ios, windows phone ) with following features
    App to app audio / video calling
    App to app audio conference call
    App to app messaging 
     

    Instant messaging is perfectly supported already by UCWA, audio/video are not at this moment.
    UCWA can be used by any platform/device that can 'speak HTTP', so yes the platforms you mentioned are suitable UCWA clients.
    You may adopt third party solutions and combine them with UCWA within your app in order to achieve audio/video call support.
    HTH
    Massimo Prota
    .NET MCAD - SP2007 MCTS - SP2010 MCPD and MCITP
    My blog: http://blogs.ugidotnet.org/mprota - Twitter:
    @massimoprota

  • Bar Code Scanning for Windows Phone 8.1

    Hi,
    I need to find proper way how to scan bar codes in Windows Phone 8.1 or in universal app. I found out that there is native class BarcodeScanner available only for client apps and not for WP. I also find 3rd party library zxing.net, which is not working very
    well on WP 8.1. I have done really deep research, but I have not found any single working solution for WP 8.1, so I would like to ask for your help in finding of library with which I will be able to scan barcodes on WP 8.1.
    Thank you.

    If you don't need a universal App you could build a Silverlight 8.1 App and use the old Camera APIs which work nicely with ZXing.Net. I have done so myself.
    As for Windows 8 and Universal Apps - you would have to implement a CustomSink for the Video Stream, extract Frames from there and pipe those though a recognition library. So far there seems to be no ready made solution that offers this.
    So right now using the old APIs would be my suggestion.

  • Voip application for windows phone 8.1 fails store submission

    A voip application with the new 8.1 architecture based on a separate process for the voip server is not accepted by the store.
    Voip architecture is based on 8.1 sample: https://code.msdn.microsoft.com/windowsapps/ChatterBox-VoIP-WP81-64921ad4
    Errors during submission:
    3011: The package is missing RpalManifest.xml. Update it and then try again.
    1028: The native API api-ms-win-core-processthreads-l1-1-2.dll:ExitProcess() isn’t allowed in assembly doubango.BackEndServerHost.exe. Update it and then try again.

    Update.  I am currently working with the sample team to update the sample.   We found the problem to be in the way the BackEndServerHost VIsual studio 
    project was created.   While we work on re-creating that from scratch, testing, and re-publishing I wanted to post what we have done so far in case anyone 
    wants to move forward.
    First there are a couple bugs in the sample, maybe you worked around those already in your development but in case not here they are.
    In the backendaudio.cpp BackEndCapture::InitCapture I changed the code:
    if (SUCCEEDED(hr))
    WAVEFORMATEX format = {};
    if (SUCCEEDED(hr))
    FillPcmFormat(format, m_pwfx->nChannels, m_pwfx->nSamplesPerSec, m_pwfx->wBitsPerSample);
    m_sourceFrameSizeInBytes = (format.wBitsPerSample / 8) * format.nChannels;
    hr = m_pDefaultCaptureDevice->Initialize(AUDCLNT_SHAREMODE_SHARED, 0x88140000, 1000 * 10000, 0, &format, NULL);
    The m_pwfx was already retrieved via GetMixFormat earlier, just use that.  Don’t create a custom one.
    In the BackEndAudio::Stop routine change the order of cleanup:
    if (m_pDefaultRenderDevice)
    m_pDefaultRenderDevice->Release();
    m_pDefaultRenderDevice = NULL;
    if (m_pDefaultCaptureDevice)
    m_pDefaultCaptureDevice->Release();
    m_pDefaultCaptureDevice = NULL;
    if (m_pCaptureClient)
    m_pCaptureClient->Release();
    m_pCaptureClient = NULL;
    The next step is to basically delete the BackEndServerHost project and create a new one with the following steps.
    1)  Add a new C++ Dirext X App (Windows Phone) to the solution and name it VoipBackendServerHost  NOTE: using "." in the name causes problems, so don't use the same name as the original sample.
    2)  Remove the Common and Content Folders
    3)  Remove App1Main.cpp and App1Main.h
    4)  Contents of app.cpp should be:
    #include "pch.h"
    #include "App.h"
    #include <windows.applicationmodel.core.h>
    #include <wrl.h>
    #include <string>
    #include <stdexcept>
    using namespace ABI::Windows::ApplicationModel::Core;
    using namespace ABI::Windows::Foundation;
    using namespace Microsoft::WRL;
    using namespace Wrappers;
    HRESULT __cdecl MyGetActivationFactory(_In_ HSTRING activatableClassId, _COM_Outptr_ IInspectable **factory);
    class GetCustomClass : public RuntimeClass<RuntimeClassFlags<RuntimeClassType::WinRtClassicComMix>,
    IGetActivationFactory,
    CloakedIid<IAgileObject >>
    public:
    IFACEMETHODIMP GetActivationFactory(_In_ HSTRING activatableClassId, _COM_Outptr_ IInspectable **factory)
    return MyGetActivationFactory(activatableClassId, factory);
    private:
    HMODULE m_hMod;
    [Platform::MTAThread]
    int main(Platform::Array<Platform::String^>^)
    HRESULT hr = Initialize(RO_INIT_MULTITHREADED);
    if (FAILED(hr))
    throw std::runtime_error(std::string("Failed to Initialize(RO_INIT_MULTITHREADED), HRESULT: ").append(std::to_string(hr)));
    // Scoping for smart pointers
    ComPtr<ICoreApplication> spApplicationFactory;
    hr = GetActivationFactory(HStringReference(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication).Get(), &spApplicationFactory);
    if (FAILED(hr))
    throw std::runtime_error(std::string("Failed to GetActivationFactory(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication), HRESULT: ").append(std::to_string(hr)));
    ComPtr<IGetActivationFactory> spGetActivationFactory = Make<GetCustomClass>();
    spApplicationFactory->RunWithActivationFactories(spGetActivationFactory.Get());
    Uninitialize();
     5) Right click and bring up Project properties.  go To Linker->Input.
     6) Set the Configuration and Platform dropdowns to change all configurations all platforms at the same time
     7) Choose Edit for Additional Dependencies and set to this:
    $(SolutionDir)$(PlatformTarget)\$(Configuration)\BackEnd\PhoneVoIPApp.BackEnd.lib
    WindowsPhoneCore.lib
    RuntimeObject.lib
     8) Under Cofniguration Properties->General Set the Target Name to PhoneVoIP.BackEnd.HostServer and Output directory to $(SolutionDir)UI
     9) APply the settings. Then click OK
    10) Build the Proxy Stub
    11) Build the Agents
    12) Build the new Project
    13) Expand the UI (Windows Phone Silverlight 8.1) Project and find the PhoneVoIP.BackEnd.HOstServer.exe and remove it.
    14) Right click UI and Choose Add Existing and add the PhoneVoIP.BackEnd.HostServer
    This should hopefully get you moving forward.  Please test and make sure your application is working. The end result should pass WACK now.  Please let me know if there are any issues.  It is a lot of steps and I hope I didn't miss any.
    Bret Bentzinger (MSFT) @awehellyeah

  • QuickControl app for Windows Phone 8.1???

    Hello,
    I'm totally happy with my Thinkpad X240 but I would like to be able to use remote control -for instance to pause/resume VLC player when the Thinkpad is hooked up to my TV. I read that Lenovo has this great program 'QuickControl', but you obviously need an accompanying app on your smartphone.
    I can find the app for iOS and Android, but I happen to own a Windows Phone (with WP8.1)... Since I'm trying to build a 'Windows Only' life after mixed experiences with Android and OSX, I would really like the QuickControl app to be available for Windows Phone. I guess it would make sense for Lenovo -being a manufacturer of PC's- to also develop QuickControl for the Windows Phone...
    Does any of you community members know where to find this app, or if/when it will become available? Or do you know another WP app that can communicate with QuickControl installed on a Thinkpad X240?
    Any help is much appreciated. Oh, and by the way: Happy Holidays everyone!

    Nice free

  • Renderpdf for Windows Phone 8.1

    Hi,
    I am trying to build a windows phone 8.1 app in which I want to render a PDF (with possible zoomed view) and display it and also I want to generate images from that PDF. Is there any third party component for doing this task?
    Thanks in advance.

    UPDATE
    According to these links and the comments from Mitch Denny, can somebody confirm that .appx files (company apps) cannot be deployed/installed on windows phone 8.1 yet?
    http://blogs.technet.com/b/windowsintune/archive/2014/05/12/what-s-coming-next-with-windows-intune.aspx
    http://blogs.technet.com/b/windowsintune/archive/2014/04/28/availability-of-update-to-windows-intune-for-windows-phone-8-1-and-samsung-knox-standard.aspx
    I would really appreciate if someone can confirm me this, because im struggling with this since days and there is no official statement from MS.
    Thanks

  • Http webrequest with https uri is not working in windows phone 8.1

    I am building a Windows Phone application in which the uat environment was working fine with http url,
    But the production url is https, then the applictaion is not able to get the response from http web request method. Please help me on the same.
    Cynthia Mareia

    Any errors returned in response?
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Submit: Great Skype for Windows Phone ideas

    We have just launched a new Windows Phone idea board to let you all share and exchange your ideas on how to improve and develop Skype for Windows Phone.
    Before you start sharing your ideas, here are some guidelines to help you get started:
    Idea Submission Guidelines
    Search before posting. Do a quick search and make sure you are not submitting a duplicate. If the idea already exists show your support by giving kudos to the original idea rather than watering down the potential impact across multiple submissions.
    Draft your idea. Be as clear as possible, tell us what your idea is, how it would benefit users and why you think we should consider it. That will not only help us to better understand what you want, but we may even be able to solve your problem more quickly another way. Please avoid text speak and keep the idea short and to the point. Ideas are available within a limited number of topic sections of the community as they are not discussion threads.
    Currently you can choose one of the following topic labels for your ideas:
    Video Messaging
    We‘ve just launched Video Messaging on Windows Phone so you can now send video messages to family and friends, even when they’re not online. Let us know what you think of Video Messaging on Windows Phone and any ideas you have for how we can make it better. 
    Phone Integration
    Tell us how you would like Skype to be integrated with Windows Phone. Would things be easier if Skype was better integrated with the People Hub? Integrated into the messaging app? Or in the dial pad? 
    Contacts
    How can we make it easier for you to find friends and family on Skype and add them as a contact? What are your thoughts on how contacts are managed on Skype for Windows Phone? Do you have any recommended improvements?
    Calling
    Tell us how you would like Skype to be integrated with Windows Phone. Would things be easier if Skype was better integrated with the People Hub? Integrated into the messaging app? Or in the dial pad? 
    Instant Messaging
    Video calling is one of Skype’s most popular features. What do/don’t you like about Video calling on Skype for Windows Phone and do you have any ideas for how we can make video calling even better? 
    Some things to include:
    Start with a clear title
    add appropriate label(s)
    list features and benefits
    Review the ideas of others. Look at other ideas to see what your fellow community members are requesting and feel free to exchange on them in the comments section. While we take into account the numbers of kudos an idea receives, we also consider the amount and quality of member feedback when making our decisions.
    Add value. Vote for those items that you like and agree with by giving the idea a kudos. It's really a significant way to recognize someone's effort. We are using votes as a barometer to find out more about what our contributor community thinks is important, so we can factor this into our prioritization process.
    Submit a new idea. Adding an idea is just like posting a message on a board. To create an idea, click on the “New Idea” button, located on the left side of the page content tab, and in the left column under the actions heading click “create an idea”. Be sure to enter a clear title and description of your idea so others can decide how they would like to vote. Remember, the more complete your thought, the more likely it is to get noticed! You can use simple HTML, format the text, or add links or images. You can also preview your idea and check your spelling before you post the idea.
    Do not be discouraged. Sometimes what seems simple may not be so simple to build. Some ideas take longer than others, and some ideas will not be possible within the scope of what we want to accomplish in the next year or so.
    Be respectful. Comply with the Community Guidelines and Skype etiquette.
    Disclaimer: Skype may or may not use your comments, ideas, or suggestions. Skype reserves the right to use for any purpose including commercial purposes, comments, ideas, suggestions, code, products or services (“Content”) that are posted on this community without any obligation to compensate the individual or entity that provided the Content. By posting any Content in the community, you hereby relinquish any right you may have in such Content and to any future compensation for publication, use, distribution, license or sale of the same. By posting Content, you represent and warrant that you either own or control all of the rights to that Content, and such Content does not violate any third party rights or these Skype Terms of Service. You agree that all opinions expressed by users of this community are expressed in their individual capacities, and not as representatives of Skype.
    Frequently Asked Questions
    What is the Idea Board all about?
    Idea Board is a new part of the Skype Community, where members can share their ideas about existing products and services. Anyone in the community can see and vote on the ideas you post.
    We encourage you to give kudos and comment on submitted ideas as we are more likely to take the top kudoed and most discussed ones into consideration.
    How do I navigate the Ideas Board? 
    Finding your way around the ideas board is a pretty straightforward task, here are some of the things you will see to help you get around.
    •  New Ideas – The most recent ideas.
    •  Hot Ideas – The most popular ideas right now.
    •  Top Ideas – The most kudoed ideas.
    The sidebar widgets
    In the sidebar you'll find more ways to sort the ideas board, see new and popular ideas and the top rated contributors to the idea board. It's also really easy to view only the ideas with certain status', for instance if you only want to see ideas that are “Accepted”.
    How to check if an idea exists already?
    Use the search function filtering by the ideas board – or click here (direct link to search function)
    What do the votes/kudos mean?
    Just as you can give kudos in the community boards and blogs, you can vote for ideas you like on the Idea Board. Ideas with high vote totals are more likely to be recognized and accepted by the teams at Skype who develop our products and services. You can also leave comments on ideas, but remember to be kind!
    What do the different idea statuses mean?
    We strive to review submitted ideas on a biweekly/monthly cycle. Each idea will go through a life cycle that will be assigned statuses at each milestone. The statuses are explained here:
    New Idea - Sparkly new idea, submitted by you, and ready to be vetted by the community.
    Comments Requested - Items set as Comments Requested will be open to the community for feedback and votes.
    Under consideration - Idea has been forwarded to appropriate business team who is determining feasibility.
    More information needed - More information is needed before our Product Management team can take this forward, please review the comments left by the team.
    Duplicate - Ideas in this status have already been submitted in some form or another. We will link these items over to the other idea so you can review the status or track the progress there.
    Already exists - This is available in the product. 
    Future possibility - Idea is a good one but not something we can include in a near-term product or software release.
    Accepted - Idea has been accepted and has been taken forward for implementation, check back soon for updates.
    Not right now - We like the idea but just not for right now, we will revisit it in the future.
    Implemented - You asked for it, we did it!
    My idea has been accepted. How long will it take to be implemented?
    Sadly, we will not be able to provide dates for the implementation of any accepted ideas within the community due to the number of factors involved. Please be patient and let us make sure it is completely ready before we make it available.
    How will I know if an idea has been implemented?
    You can track the status of your ideas as your ideas are sent to the people here at Skype who can make them happen and you will see the status of your idea is updated. We will be telling you if the idea is something we are working on now or would like to do in the future, or if it’s something that is not feasible for us at this time. To ensure you don’t miss any updates select “Subscribe” from the “Idea Options” menu when viewing your idea.
    What ideas have been implemented so far?
    You can check "Accepted and Implemented ideas" topic here.
    Can I edit or delete my ideas comments?
    No, you can't. Be sure to check your spelling and preview your comment before you post it; you can't edit a comment once it's posted.
    Who and how often moderates/ manages the ideas board?
    The community team is monitoring the board on the daily basis and product managers will come in on a monthly basis to update statuses of the ideas and post their comments.
    If Skype decides not to pursue my idea, will you tell me why?
    We do not always provide the reasons for our decisions regarding ideas submitted for review but will strive to provide an explanation where possible.
    I have an idea to improve the Windows Phone software itself?
    Microsoft has set up a Windows Phone Feature Suggestion Box for exactly that purpose. Share your idea here: http://windowsphone.uservoice.com
    If I am not comfortable submitting my idea over the Internet, is there another way I can do so?
    No.

    I would really appreciate if you guys work on the feature “ custom backgrounds for chat notifications”.If users will be able to choose any image of their liking in the custom background feature if would add value. Currently some of the chat messengers provide this facility to the users which makes interesting to the users while improving user friendliness and satisfaction. Options that would include areTake a photoChoose from albumsSearch from webDeleteThat appears to be a reasonably robust selection. In search, a user can use a built in engine to pull up images based on search and then select it as it their choice. Once you chose an image, it will be asked to confirm and ‘set’ as the universal chat window for all contacts. 

  • Adobe Reader for Windows Phone cannot open older PDF versions?

    I've found that Adobe Reader for Windows Phone displays the following error when I try to open certain PDF documents: "There was an error opening the document".
    After doing some limited testing I found that it can successfully open PDF documents which were saved as "PDF version: 1.5 (Acrobat 6.x)", but the error appears when it tries to open documents saved as the older format "PDF version: 1.3 (Acrobat 4.x)". (I am checking the filetype version by opening the documents in Adobe Reader X on my PC and looking at the document properties).
    My phone is a HTC 7 Mozart running Windows Phone 7.5. I noticed the problem when I was using the SkyDrive app to try and look at some PDF files I have saved in SkyDrive. SkyDrive downloads the file and then passes it to the Adobe Reader app to view. It works when I look at a newer version 1.5 PDF but not the older v1.3 type. Unfortunately my HP Photosmart 5510 scanner outputs scans as PDF files and only in the older file version.
    I've tried reinstalling the SkyDrive app and the Adobe Reader app on my phone. (The Adobe Reader app is version 10.1.1, build 20120919).
    Is this a known limitation, or is this a bug?
    If this is a limitation that won't be fixed - is there an easy way I can convert my files to the newer file type? (Adobe Reader X on my PC doesn't seem to offer a way to convert existing files)
    Thanks!

    [topic moved to Adobe Reader for Windows Phone forum]

  • March 2015 TechNet Guru Awards! See who's boss in Windows Phone! It could be YOU!

    The results for March's
    TechNet Guru competition were posted!
    http://blogs.technet.com/b/wikininjas/archive/2015/04/17/the-microsoft-technet-guru-awards-march-2015.aspx
    Below is a summary of the medal winners for December. The last column being a few of the comments from the judges.
    Unfortunately, runners up and their judge feedback comments had to be trimmed from THIS post, to fit into the forum's 60,000 character limit, however
    the full version is available on TechNet Wiki.
    Some articles only just missed out, so we may be returning to discuss those too, in future blogs.
     BizTalk Technical Guru - March 2015  
    Steef-Jan Wiggers
    BizTalk Server 2013 R2 Instrumenting an orchestration with ETW
    Sandro Pereira: "Really nice article, I love it, nice use of the BizTalk CAT Instrumentation Framework. And once again, the article well detailed and excellent formated in terms of images and text format. Good work Steef-Jan."
    Ed Price: "Fantastic depth in the Introduction, Scenario, and Wrap Up!"
    Steef-Jan Wiggers
    View BizTalk Send Port Subcriptions
    Sandro Pereira: "Really useful script! Good job Steef-Jan."
    Ed Price: "Good context setting in the introduction (the image helps a lot)!"
     Forefront Identity Manager Technical Guru - March 2015  
    Tracy Yu-MSFT
    The Ultimate Tools to work ith RCDC in FIM
    Søren Granfeldt: "Very nice and a great help for all of us struggling with RCDC's"
    AM: "Thanks for posting Tracy! RCDCs can be very frustrating to troubleshoot."
    Wim Beck
    FIM2010: Protect passwords in configuration files
    Søren Granfeldt: "Nice technical explanation and good approach"
    AM: "Far too many FIM environments I find plain text passwords stored in scripts - great contribution.
    Another helpful resource"
     Microsoft Azure Technical Guru - March 2015  
    saramgsilva
    Avoid Nightmares Using EF First Migration in Azure Mobile Services
    JH: "Another nice one from Sara. Definitely worth a look."
    Ed Price: "I love the use of embedded links to the related library articles! And the article is rich with descriptions, well-formatted code with great commenting, and clarifying images. Plus a link to the source code. Fantastic job on
    this!"
    Alan Carlos: "Great! Very detailed!"
    Ken Cenerelli
    Creating an Microsoft Application Insights resource
    Alan Carlos: "Great article!"
    Ed Price: "Incredibly thorough how-to article!"
    JH: "Application Insight is something everybody should have on his radar. Ken provides a nice article to get started."
    Prashant Mahajan
    Azure: MVC application to refer js from blob
    JH: "Nice alternative on deploying JavaScript on Azure. Worth a look in some deployment scenarios
    Ed Price: "This is a great topic! Could be improved on with code formatting and a See Also section. Good article!"
     Miscellaneous Technical Guru - March 2015  
    XAML guy
    Convert and Edit Microsoft Office Live Meeting Recordings
    Alan Carlos: "Thanks XAML guy! Very yseful!"
    Durval Ramos: "This article was "welcome", but "a little late". Simple and clear. Well done, Peter!"
    Ed Price: "Fantastically crafted instructional guide!"
    Richard Mueller: "Great information. Good use of article guidelines. I like the images."
    Andy ONeill
    Silverlight: Trouble Shooting Installs
    Alan Carlos: "Cool Andy!"
    Durval Ramos: "This article is very detailed, has a demo and use description in different browsers, but could change sections order or maybe split article: "What's Silverlight?" and "Trouble Shooting Installs". Well,
    one more time... Good job Andy!"
    Ed Price: "Incredibly exhaustive with a lot of great supporting sections!"
    Richard Mueller: "Good use of article guidelines, like "See Also" and TOC."
    Tom Mohan
    Zen coding with Visual Studio
    Durval Ramos: "It would be welcome if added images and references about your use in VS"
    Ed Price: "Great topic with some great code formatting! Could benefit from section headers and a See Also section. Very helpful article!"
    Richard Mueller: "Very interesting. This tool could prove useful, once you get used to it."
     SharePoint 2010 / 2013 Technical Guru - March 2015  
    Murugesa Pandian
    Simple understanding on SharePoint Provider Hosted App Model
    Jinchun Chen: "Nice article"
    Hezequias Vasconcelos: ""
    KB: "Please correct typos. I like the explanation on difference between app only permissions and user permissions"
    Ed Price: "Great explanation! The diagrams are very helpful!"
    Margriet Bruggeman: "Interesting start, but I feel this article needs a lot more work to become really useful. Not because the article is bad, but because of the fact that the topic is so complex."
    Melick
    JSOM List Operations in SharePoint Apps in a proper way (Provider
    Hosted and SharePoint Hosted)–CRUD
    Margriet Bruggeman: "Clean implementation of a very useful JS library. I really like this approach"
    Hezequias Vasconcelos: "The sound is great content for development in SharePoint"
    Ed Price: "Good topic with helpful code snippets! Could benefit from Headers, a TOC, and a See Also section. "
    Michaelle de las Alas
    Expandable/Collapsible Headers Solution for SharePoint Pages
    Hezequias Vasconcelos: "The page management and scheduled SharePoint content is a great resource."
    Ed Price: "It's simple, well-written, and very helpful for the community! Could benefit from headers, a TOC, and a See Also section. Great topic!"
    Margriet Bruggeman: "I like it. A useful idea that is easy to implement." 
     Small Basic Technical Guru - March 2015  
    Philip Munts
    Small Basic and the Raspberry Pi
    Michiel Van Hoorn: "Wonderful idea and good write up. Would be cool so have something running with the "regular" Raspbian."
    RZ: "This is incredible. Detailed step-by-step instructions and pictures/screenshots. Makes me want to jump up and try it myself now. But I will save it for a nice rainy day project to work with my boy. I am sure he will be all in awe!"
    Yan Grenier
    Small Basic: Timeline for the games
    Michiel Van Hoorn: "Great advance article on timelines. Very usefull to those looking for more complex games."
    RZ: "This is a difficult topic, especially for beginners. But Yan explained it very well with details and examples!"
    Ed Price - MSFT
    Small Basic on TechNet Gallery
    Michiel Van Hoorn: "Very useful "baseline" for those who want to blog / post."
    RZ: "Very nice explanation of the TechNet Gallery"
     SQL BI and Power BI Technical Guru - March 2015  
    Jens Vestergaard
    SSIS Script Task and Proxy Auto Configuration (PAC) Script
    RB: "Great article, that applies to any kind of web content."
    PT: "Good quick reference example. Thanks for submitting it."
    Ricardo Lacerda
    SSIS: Data maintenance with Microsoft Azure SQL Database
    PT: "This is a very complete tutorial on setting up CDC which makes the process quite clear. Thnaks"
    RB: "Great article !"
     SQL Server General and Database Engine Technical Guru - March 2015  
    Visakh16
    Parsing Out Data From Flat File With Inconsistent Delimiters in SQL Server
    Durval Ramos: "Very useful. Good job !"
    Ed Price: "Fantastic job on the code formatting, in-depth descriptions, and robust use of images!"
    AM: "Thanks for presenting multiple approaches to solve the problem. It would be good to see a second part describing the format file."
    DRC: "This is a good article which provides different ways to import the data to SQL, But this article needs some modifications. Suggestions: • It would be helpful, if mentioned on which version of SQL server and Visual studio scenario
    was tested • We might encounter errors while using the format files, for example we get the below error if the format file doesn’t have blank space (character ) at the end of each line Msg 4862, Level 16, State 1, Line 10 Cannot bulk load because the file
    "C:\temp\good.fmt" could not be read. Operating system error code (null). • So it will be helpful if you can provide a sample format file and TSQL script along with the possible output which can be tested and compared. • The sample query and the
    format file is not yielding the right output. Screenshots shown in the article has invalid values (for example ID coulmn has invalid values). Format file need to be fixed to get the right data. • The format file under section “Files With Text Qualifiers” is
    also invalid and the data is not imported properly. • Implementation of import using the SSIS package needs more details about how to make the delimiter consistent, Attaching a sample package would be helpful. "
     System Center Technical Guru - March 2015  
    Noah Stahl
    Make System Center Orchestrator Text Faster than a Teenager using PowerShell
    and Twilio
    Ed Price: "Wow, I love the breakdown of sections. As Alan wrote in the comments, "Wow! Great article!""
    Mr X
    How to educate your users to regularly reboot their Windows computers
    Ed Price: "I love the table and use of code snippets and images! Great article!"
     Transact-SQL Technical Guru - March 2015  
    Saeid Hasani
    T-SQL: How to Sort a Column that Contains Character-Separated Numbers
    Durval Ramos: "Great article! The samples in this article are very enlightening."
    Richard Mueller: "Good use of guidelines. Good images. Grammar needs work."
    Saeid Hasani
    T-SQL: Troubleshooting When a Column Alias that
    Created in the SELECT Clause Cannot be Used in the ORDER BY Clause
    Richard Mueller: "Great use of article guidelines. I like the images and "See Also". Good explanation of an advanced topic."
    Durval Ramos: "An interesting topic and also have T-SQL script on TNGallery, about related issue in MS Connect. Good job!"
    sql-pro
    T-SQL: SQL Server Agent Job Execution Status
    Durval Ramos: "This article has interesting content, but needs to be better worked."
    Richard Mueller: "A great idea. We may need more references/links."
     Visual Basic Technical Guru - March 2015  
    Reed Kimble
    Simple Multi-User TCP/IP Client & Server using TAP
    Durval Ramos: "This article offers a complete description about an TAP implementation and has a download code on MSDN Code. Good job!"
    Richard Mueller: "I liked this article a lot. Good use of article guidelines. A lot of useful links, but some could be collected in an "Other Resources" section."
    .paul.
    Factorizing Quadratic Equations (practice and solver)
    Durval Ramos: "Very good. Well formatted article and has images that clarify how to work equations. "
    Richard Mueller: "A fun article with good images."
     Visual C# Technical Guru - March 2015  
    Isham Mohamed
    Setting custom Messages in user defined Exceptions
    Carmelo La Monica: "Good articles and sample code!"
    Jaliya Udagedara: "A short and to the point article. Answers a common problem."
    Tom Mohan
    .NET: Equality Features
    Jaliya Udagedara: "Great article. Has links to MSDN when needed. Definitely enjoyed reading."
    Carmelo La Monica: "Article very detailed in all parts, congrats!"
    Vithal Wadje
    Constructors and Its Types in C#
    Carmelo La Monica: "Well done in all its content , and very exhaustive of the types of constructors of a class"
    Jaliya Udagedara: "Explains Constructors in detail. Please do format the code as Andy suggested."
     Wiki and Portals Technical Guru - March 2015  
    Davut EREN
    Turkish Ninjas Team Council Center
    Durval Ramos: "Great collection of Turkish articles!!!"
    Richard Mueller: "Amazing collection of links."
    Ed Price: "Great job in using this article to build out Turkish content and encourage the community!"
    Alan do Nascimento Carlos
    TechNet Wiki - Images
    Durval Ramos: "Very useful for use in "Wiki Ninjas" Blog posts."
    Richard Mueller: "A great collection of fun images."
    Ed Price: "I can see this article being well used as we leverage these images in blog posts!"
     Windows Phone and Windows Store Apps Technical Guru - March 2015  
    Damien Allan
    Make a Styled Button in XAML for Windows Universal Apps
    JH: "Styling has always been special in XAML-based applications. This article shows nicely how to style a button in Blend in universal apps."
    Ed Price: "Great explanations and how-to content, with helpful images and code!"
    Carmelo La Monica
    Part four: The control Maps on Windows Phone 8.
    JH: "Another article about working with the maps control in Windows Phone 8. Nice to see another one in this series."
    Ed Price: "Fantastic and exhaustive explanation of the Maps control!"
     Windows PowerShell Technical Guru - March 2015  
    Noah Stahl
    Make System Center Orchestrator Text Faster than a Teenager using PowerShell
    and Twilio
    Alan Carlos: "Wow! Great article! Congratulations!!!!"
    Ed Price: "What a powerful solution with great details and helpful images!"
    Richard Mueller
    PowerShell Script to Search Active Directory
    Ed Price: "This article is amazing, due to great details, a couple of helpful tables, lots of supporting images, and a plethora of related links at the end!"
    Alan Carlos: "Very useful!!!"
    Dan Christian
    Add MSG file metadata to a SharePoint list using PowerShell
    Alan Carlos: "Excellent!"
    Ed Price: "I love the supplemental video and helpful images!"
     Windows Presentation Foundation (WPF) Technical Guru - March 2015  
    Andy ONeill
    Uneventful MVVM
    Ed Price: "Amazing depth on this article! I love the See Also and Other Resources sections! Astonishingly great article!"
    Peter Laker: "Supurb article Andy. Nice work again."
    Magnus (MM8)
    WPF: Implementing Global Hot Keys
    Ed Price: "I love the breakdown of sections and clear descriptions!"
    Peter Laker: "Excellent topic and well explained Magnus!"
    Tom Mohan
    Asynchronous data binding using IsAsync and Delay
    Peter Laker: "Great tip Tom, thanks for your contribution!"
    Ed Price: "Very valuable topic!"
     Windows Server Technical Guru - March 2015  
    Pierre-Alexandre Braeken
    Active Directory - Clone a Domain Controller in Windows Server 2012
    with Hyper-V (VM-GenerationID)
    Mark Parris: "The principals of cloning a DC."
    JM: "This is an excellent article on cloning a DC, nice work and thanks for the contribution."
    Richard Mueller: "Excellent topic and great images."
    Mr X
    Netstat for Beginners
    JM: "This is a great article on netstat, thanks for your contribution."
    Richard Mueller: "Very good tutorial on this important tool. I like the images and tables."
    Mark Parris: "Good Insight"
    Pierre-Alexandre Braeken
    Set up a virtual infrastructure at home with Windows 8 + Hyper-V
    Manager and a Synology DS412j
    Mark Parris: "Nice how to article."
    JM: "Although not aimed at Windows Server users, this is also an excellent article."
    Richard Mueller: "Extensive documentation for all the steps."
    As mentioned above, runners up and comments were removed from this post, to fit into the forum's 60,000 character limit.
    You will find the complete post, comments and feedback on the
    main announcement post.
    Please join the discussion, add a comment, or suggest future categories.
    If you have not yet contributed an article for this month, and you think you can write a more useful, clever, or better produced wiki article than the winners above,
    here's your chance! :D
    Best regards,
    Pete Laker
    More about the TechNet Guru Awards:
    TechNet Guru Competitions
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to
    TechNet Wiki, for future generations to benefit from! You'll never get archived again, and
    you could win weekly awards!
    Have you got what it takes o become this month's
    TechNet Technical Guru? Join a long list of well known community big hitters, show your knowledge and prowess in your favoured technologies!

    Congrats to Damien and Carmelo!
     Windows Phone and Windows Store Apps Technical Guru - March 2015  
    Damien Allan
    Make a Styled Button in XAML for Windows Universal Apps
    JH: "Styling has always been special in XAML-based applications. This article shows nicely how to style a button in Blend in universal apps."
    Ed Price: "Great explanations and how-to content, with helpful images and code!"
    Carmelo La Monica
    Part four: The control Maps on Windows Phone 8.
    JH: "Another article about working with the maps control in Windows Phone 8. Nice to see another one in this series."
    Ed Price: "Fantastic and exhaustive explanation of the Maps control!"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Nokia Lumia 1520 upgraded to Windows Phone 8.1 G.D...

    Hello reader(S),
    Today I accepted the Fast Ring (which was the only offered ring) programme on my Nokia Lumia 1520 to install the latest preview builds of Windows 10 and provide feedback for Microsoft... but here's the odd part, it installed Windows Phone 8.1 Update 2/G.D.R. 2 and doesn't show anything even remotely related to Windows 10, whenever I go back to the Windows Insider Hub it tells me that it'll reboot my device, then it shows me everything that's new in Windows Phone 8.1 (Blue) - with Nokia Lumia Cyan, and then doesn't change anything. It had an oddity in the ''migrating your data'' portion of the update where it went, and then I'd literally watch the bar roll back, where it went, and then I'd literally watch the bar roll back, where it went, and then I'd literally watch the bar roll back, where it went, and then I'd literally watch the bar roll back, where it went, and then I'd literally watch the bar roll back, OVER and OVER again, after a while the update was done rolling out and since my Nokia Lumia 1520 is already a rubbish phone that constantly crashes and is so inusable for anyone without the patience of a Shaolin Monk that I can't give it away as a gift (I intend to give it to my sister eventually...), now I bought a Microsoft Lumia 532 mobile telephone last week, but after reading that some ''cheaper'' mobile telephones have trouble with Windows 10's technical preview I ought to install it on my Nokia Lumia 1520 which severely lacks in every respect, is a bug-fest and I wouldn't mind it getting "bricked".
    ¿So how can I install the Windows 10 preview? Note that I don't have a developer's account and did not download it via the Windows Phone Developer Preview Hub, I installed it over Windows (Phone) Update and did it exactly as other Windows Insiders previously have.
    Sincerely,
    Tula, the Quang

    I also forgot to mention that I indeed have tried to roll into the Fast Ring programme again with no avail. 

  • Application Insights is not recording any data from the released version of my Windows Phone app

    I released my first Windows Phone app a week ago, and Application Insights worked perfectly to collect usage data whilst in a debug build. However, the released version of the app is not returning any data at all. Is this a common problem for new apps or
    is there a problem that I need to address?
    I configured Application Insights for my app using the information on this guide - http://msdn.microsoft.com/en-us/library/dn509554.aspx
    Any ideas or help would be greatly appreciated, thanks for your help.

    Hi Bernard, thanks for your reply.
    I tested the data using a release package of the Windows Phone app deployed directly to my phone from Visual Studio and the data appeared after around 10 minutes. However, once I published the exact same package to the Windows Phone Store and started using
    the version downloaded from the store, no usage data has been uploaded even after several days of waiting.
    I am using SDK 0.7.1 and Application Insights Tools for Visual Studio v1.3.2. The app is built for WP 8.0 and running on WP 8.1.
    The instrumentation key is 757eeaff-605e-44a2-8eaa-6abf498bfcf5.
    Thanks for your time and help, I really appreciate it.
    Dan

  • Can't seem to install Windows Phone Recovery Tool

    I'm trying to install WP Recovery Tool because while I loved the Windows 10 preview for phones, the no cellular data is a no-no for me.
    Every time I try to install the recovery tool, I keep getting 0x80072efd- Unspecified Error.
    Any suggestions?
    Here's the log of the error
    [3124:05F4][2015-04-11T09:27:03]i001: Burn v3.8.1128.0, Windows v6.3 (Build 9600: Service Pack 0), path: C:\Users\Lohith\Downloads\WindowsPhoneRecoveryTool​Installer (5).exe, cmdline: ''
    [3124:05F4][2015-04-11T09:27:03]i000: Initializing string variable 'LaunchTarget' to value '[ProgramFilesFolder]Microsoft Care Suite\Windows Phone Recovery Tool\WindowsPhoneRecoveryTool.exe'
    [3124:05F4][2015-04-11T09:27:03]i000: Setting string variable 'WixBundleLog' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703.log'
    [3124:05F4][2015-04-11T09:27:03]i000: Setting string variable 'WixBundleOriginalSource' to value 'C:\Users\Lohith\Downloads\WindowsPhoneRecoveryToo​lInstaller (5).exe'
    [3124:05F4][2015-04-11T09:27:03]i052: Condition '(VersionNT >= v6.1)' evaluates to true.
    [3124:05F4][2015-04-11T09:27:03]i000: Setting string variable 'WixBundleName' to value 'Windows Phone Recovery Tool 1.1.0'
    [3124:05F4][2015-04-11T09:27:03]i100: Detect begin, 40 packages
    [3124:05F4][2015-04-11T09:27:03]i000: Setting string variable 'NETFRAMEWORK45' to value '378675'
    [3124:05F4][2015-04-11T09:27:03]i000: Setting string variable 'VC2012RedistInstalled' to value '1'
    [3124:05F4][2015-04-11T09:27:03]i000: Setting string variable 'VC2012RedistInstalled64' to value '1'
    [3124:05F4][2015-04-11T09:27:03]i052: Condition 'NETFRAMEWORK45 >= 378389' evaluates to true.
    [3124:05F4][2015-04-11T09:27:03]i052: Condition 'VC2012RedistInstalled=1 or VC2012RedistInstalled64=1' evaluates to true.
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: CheckFreeDiskSpace, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: NetFx45Web, state: Present, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: VC2012Redist, state: Present, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: CommunicationLayerCleaner, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WinUsbDeviceRemover, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WinUsbCoInstallers, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WinUsbCompatIdInstaller, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WinUsbDriversExt, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_enUS, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_arSA, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_csCZ, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_daDK, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_deDE, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_elGR, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_esES, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_etEE, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_fiFI, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_frFR, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_heIL, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_hrHR, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_huHU, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_itIT, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_jaJP, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_koKR, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_ltLT, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_lvLV, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_nbNO, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_nlNL, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_plPL, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_ptBR, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_roRO, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_ruRU, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_skSK, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_slSI, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_svSE, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_thTH, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_trTR, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_zhCN, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_zhHK, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i101: Detected package: WPRT_zhTW, state: Absent, cached: None
    [3124:05F4][2015-04-11T09:27:03]i052: Condition 'Privileged <> 0' evaluates to true.
    [3124:05F4][2015-04-11T09:27:03]i199: Detect complete, result: 0x0
    [3124:09BC][2015-04-11T09:27:05]i000: Setting numeric variable 'EulaAcceptCheckbox' to value 0
    [3124:05F4][2015-04-11T09:27:05]i200: Plan begin, 40 packages, action: Install
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_CheckFreeDiskSpace' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_0_CheckFreeDisk​Space.log'
    [3124:05F4][2015-04-11T09:27:05]w321: Skipping dependency registration on package with no dependency providers: NetFx45Web
    [3124:05F4][2015-04-11T09:27:05]w321: Skipping dependency registration on package with no dependency providers: VC2012Redist
    [3124:05F4][2015-04-11T09:27:05]w321: Skipping dependency registration on package with no dependency providers: CommunicationLayerCleaner
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_CommunicationLayerCleaner' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_1_Communication​LayerCleaner.log'
    [3124:05F4][2015-04-11T09:27:05]w321: Skipping dependency registration on package with no dependency providers: WinUsbDeviceRemover
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_WinUsbDeviceRemover' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_2_WinUsbDeviceR​emover.log'
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_WinUsbCoInstallers' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_3_WinUsbCoInsta​llers.log'
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_WinUsbCompatIdInstaller' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_4_WinUsbCompatI​dInstaller.log'
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_WinUsbDriversExt' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_5_WinUsbDrivers​Ext.log'
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'NOT ( UserLanguageID=1025 OR UserLanguageID=5121 OR UserLanguageID=15361 OR UserLanguageID=3073 OR UserLanguageID=2049 OR UserLanguageID=11265 OR UserLanguageID=13313 OR UserLanguageID=12289 OR UserLanguageID=4097 OR UserLanguageID=6145 OR UserLanguageID=8193 OR UserLanguageID=16385 OR UserLanguageID=10241 OR UserLanguageID=7169 OR UserLanguageID=14337 OR UserLanguageID=9217 OR UserLanguageID=1029 OR UserLanguageID=1030 OR UserLanguageID=1031 OR UserLanguageID=3079 OR UserLanguageID=5127 OR UserLanguageID=4103 OR UserLanguageID=2055 OR UserLanguageID=1032 OR UserLanguageID=3082 OR UserLanguageID=1034 OR UserLanguageID=11274 OR UserLanguageID=16394 OR UserLanguageID=13322 OR UserLanguageID=9226 OR UserLanguageID=5130 OR UserLanguageID=7178 OR UserLanguageID=12298 OR UserLanguageID=17418 OR UserLanguageID=4106 OR UserLanguageID=18442 OR UserLanguageID=22538 OR UserLanguageID=2058 OR UserLanguageID=19466 OR UserLanguageID=6154 OR UserLanguageID=15370 OR UserLanguageID=10250 OR UserLanguageID=20490 OR UserLanguageID=21514 OR UserLanguageID=14346 OR UserLanguageID=8202 OR UserLanguageID=1061 OR UserLanguageID=1035 OR UserLanguageID=1036 OR UserLanguageID=2060 OR UserLanguageID=11276 OR UserLanguageID=3084 OR UserLanguageID=9228 OR UserLanguageID=12300 OR UserLanguageID=15372 OR UserLanguageID=5132 OR UserLanguageID=13324 OR UserLanguageID=6156 OR UserLanguageID=14348 OR UserLanguageID=58380 OR UserLanguageID=8204 OR UserLanguageID=10252 OR UserLanguageID=4108 OR UserLanguageID=7180 OR UserLanguageID=1037 OR UserLanguageID=1050 OR UserLanguageID=1038 OR UserLanguageID=1040 OR UserLanguageID=2064 OR UserLanguageID=1041 OR UserLanguageID=1042 OR UserLanguageID=1063 OR UserLanguageID=1062 OR UserLanguageID=1044 OR UserLanguageID=2068 OR UserLanguageID=1043 OR UserLanguageID=2067 OR UserLanguageID=1045 OR UserLanguageID=1046 OR UserLanguageID=2070 OR UserLanguageID=1048 OR UserLanguageID=2072 OR UserLanguageID=1049 OR UserLanguageID=2073 OR UserLanguageID=1051 OR UserLanguageID=1060 OR UserLanguageID=1053 OR UserLanguageID=2077 OR UserLanguageID=1054 OR UserLanguageID=1055 OR UserLanguageID=2052 OR UserLanguageID=4100 OR UserLanguageID=5124 OR UserLanguageID=3076 OR UserLanguageID=1028 )' evaluates to true.
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleRollbackLog_WPRT_enUS' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_6_WPRT_enUS_rol​lback.log'
    [3124:05F4][2015-04-11T09:27:05]i000: Setting string variable 'WixBundleLog_WPRT_enUS' to value 'C:\Users\Lohith\AppData\Local\Temp\Windows_Phone_​Recovery_Tool_1.1.0_20150411092703_6_WPRT_enUS.log​'
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1025 OR UserLanguageID=5121 OR UserLanguageID=15361 OR UserLanguageID=3073 OR UserLanguageID=2049 OR UserLanguageID=11265 OR UserLanguageID=13313 OR UserLanguageID=12289 OR UserLanguageID=4097 OR UserLanguageID=6145 OR UserLanguageID=8193 OR UserLanguageID=16385 OR UserLanguageID=10241 OR UserLanguageID=7169 OR UserLanguageID=14337 OR UserLanguageID=9217' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1029' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1030' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1031 OR UserLanguageID=3079 OR UserLanguageID=5127 OR UserLanguageID=4103 OR UserLanguageID=2055' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1032' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=3082 OR UserLanguageID=1034 OR UserLanguageID=11274 OR UserLanguageID=16394 OR UserLanguageID=13322 OR UserLanguageID=9226 OR UserLanguageID=5130 OR UserLanguageID=7178 OR UserLanguageID=12298 OR UserLanguageID=17418 OR UserLanguageID=4106 OR UserLanguageID=18442 OR UserLanguageID=22538 OR UserLanguageID=2058 OR UserLanguageID=19466 OR UserLanguageID=6154 OR UserLanguageID=15370 OR UserLanguageID=10250 OR UserLanguageID=20490 OR UserLanguageID=21514 OR UserLanguageID=14346 OR UserLanguageID=8202' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1061' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1035' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1036 OR UserLanguageID=2060 OR UserLanguageID=11276 OR UserLanguageID=3084 OR UserLanguageID=9228 OR UserLanguageID=12300 OR UserLanguageID=15372 OR UserLanguageID=5132 OR UserLanguageID=13324 OR UserLanguageID=6156 OR UserLanguageID=14348 OR UserLanguageID=58380 OR UserLanguageID=8204 OR UserLanguageID=10252 OR UserLanguageID=4108 OR UserLanguageID=7180' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1037' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1050' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1038' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1040 OR UserLanguageID=2064' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1041' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1042' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1063' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1062' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1044 OR UserLanguageID=2068' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1043 OR UserLanguageID=2067' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1045' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1046 OR UserLanguageID=2070' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1048 OR UserLanguageID=2072' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1049 OR UserLanguageID=2073' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1051' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1060' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1053 OR UserLanguageID=2077' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1054' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1055' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=2052 OR UserLanguageID=4100 OR UserLanguageID=5124' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=3076' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i052: Condition 'UserLanguageID=1028' evaluates to false.
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: CheckFreeDiskSpace, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: None, cache: Yes, uncache: No, dependency: Register
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: NetFx45Web, state: Present, default requested: Present, ba requested: Present, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: VC2012Redist, state: Present, default requested: Present, ba requested: Present, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: CommunicationLayerCleaner, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: None, cache: Yes, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WinUsbDeviceRemover, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: None, cache: Yes, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WinUsbCoInstallers, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: None, cache: Yes, uncache: No, dependency: Register
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WinUsbCompatIdInstaller, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: None, cache: Yes, uncache: No, dependency: Register
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WinUsbDriversExt, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: None, cache: Yes, uncache: No, dependency: Register
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_enUS, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: Uninstall, cache: Yes, uncache: No, dependency: Register
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_arSA, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_csCZ, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_daDK, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_deDE, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_elGR, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_esES, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_etEE, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_fiFI, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_frFR, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_heIL, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_hrHR, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_huHU, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_itIT, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_jaJP, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_koKR, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_ltLT, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_lvLV, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_nbNO, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_nlNL, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_plPL, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_ptBR, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_roRO, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_ruRU, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_skSK, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_slSI, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_svSE, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_thTH, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_trTR, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_zhCN, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_zhHK, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i201: Planned package: WPRT_zhTW, state: Absent, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
    [3124:05F4][2015-04-11T09:27:05]i299: Plan complete, result: 0x0
    [3124:05F4][2015-04-11T09:27:05]i300: Apply begin
    [1E60:3238][2015-04-11T09:27:06]i360: Creating a system restore point.
    [1E60:3238][2015-04-11T09:27:06]i361: Created a system restore point.
    [1E60:3238][2015-04-11T09:27:06]i000: Caching bundle from: 'C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f​-462d-a981-403c43525256}\.be\Bootstrapper.exe' to: 'C:\ProgramData\Package Cache\{a8b207a1-a05f-462d-a981-403c43525256}\Boots​trapper.exe'
    [1E60:3238][2015-04-11T09:27:06]i320: Registering bundle dependency provider: {a8b207a1-a05f-462d-a981-403c43525256}, version: 1.1.0.0
    [1E60:37F0][2015-04-11T09:27:06]i305: Verified acquired payload: CheckFreeDiskSpace at path: C:\ProgramData\Package Cache\.unverified\CheckFreeDiskSpace, moving to: C:\ProgramData\Package Cache\{4E893B08-5155-4C03-A80C-7D9E96FFDDD2}v1.00.​0000\CheckFreeDiskSpace.msi.
    [1E60:37F0][2015-04-11T09:27:06]i305: Verified acquired payload: CommunicationLayerCleaner at path: C:\ProgramData\Package Cache\.unverified\CommunicationLayerCleaner, moving to: C:\ProgramData\Package Cache\42253689C4295B7B23419779293A6F8A3D623688\Com​mLayerCleaner.exe.
    [1E60:37F0][2015-04-11T09:27:06]i305: Verified acquired payload: WinUsbDeviceRemover at path: C:\ProgramData\Package Cache\.unverified\WinUsbDeviceRemover, moving to: C:\ProgramData\Package Cache\CAE10F2B5EDDD7A95406FFA73F7B6E029138C09E\Win​UsbDeviceRemover.exe.
    [1E60:37F0][2015-04-11T09:27:06]i305: Verified acquired payload: WinUsbDeviceRemoverConfiguration at path: C:\ProgramData\Package Cache\.unverified\WinUsbDeviceRemoverConfiguration​, moving to: C:\ProgramData\Package Cache\CAE10F2B5EDDD7A95406FFA73F7B6E029138C09E\wud​r_configuration.xml.
    [3124:2D7C][2015-04-11T09:27:06]w343: Prompt for source of package: WinUsbCoInstallers, payload: WinUsbCoInstallers, path: C:\Users\Lohith\Downloads\WinUsbCoInstallers.msi
    [3124:2D7C][2015-04-11T09:27:06]i338: Acquiring package: WinUsbCoInstallers, payload: WinUsbCoInstallers, download from: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:06]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... trying to process HTTP status code anyway.
    [3124:2D7C][2015-04-11T09:27:06]e000: Error 0x80072efd: Unknown HTTP status code 0, returned from URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:06]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:06]e000: Error 0x80072efd: Failed to connect to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:06]e000: Error 0x80072efd: Failed to get size and time for URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:06]e000: Error 0x80072efd: Failed attempt to download URL: 'http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... to: 'C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f​-462d-a981-403c43525256}\WinUsbCoInstallers'
    [3124:2D7C][2015-04-11T09:27:06]w343: Prompt for source of package: WinUsbCoInstallers, payload: WinUsbCoInstallers, path: C:\Users\Lohith\Downloads\WinUsbCoInstallers.msi
    [3124:2D7C][2015-04-11T09:27:09]i338: Acquiring package: WinUsbCoInstallers, payload: WinUsbCoInstallers, download from: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:09]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... trying to process HTTP status code anyway.
    [3124:2D7C][2015-04-11T09:27:09]e000: Error 0x80072efd: Unknown HTTP status code 0, returned from URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:09]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:09]e000: Error 0x80072efd: Failed to connect to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:09]e000: Error 0x80072efd: Failed to get size and time for URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:09]e000: Error 0x80072efd: Failed attempt to download URL: 'http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... to: 'C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f​-462d-a981-403c43525256}\WinUsbCoInstallers'
    [3124:2D7C][2015-04-11T09:27:09]w343: Prompt for source of package: WinUsbCoInstallers, payload: WinUsbCoInstallers, path: C:\Users\Lohith\Downloads\WinUsbCoInstallers.msi
    [3124:2D7C][2015-04-11T09:27:12]i338: Acquiring package: WinUsbCoInstallers, payload: WinUsbCoInstallers, download from: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:12]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... trying to process HTTP status code anyway.
    [3124:2D7C][2015-04-11T09:27:12]e000: Error 0x80072efd: Unknown HTTP status code 0, returned from URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:12]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:12]e000: Error 0x80072efd: Failed to connect to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:12]e000: Error 0x80072efd: Failed to get size and time for URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:12]e000: Error 0x80072efd: Failed attempt to download URL: 'http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... to: 'C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f​-462d-a981-403c43525256}\WinUsbCoInstallers'
    [3124:2D7C][2015-04-11T09:27:12]w343: Prompt for source of package: WinUsbCoInstallers, payload: WinUsbCoInstallers, path: C:\Users\Lohith\Downloads\WinUsbCoInstallers.msi
    [3124:2D7C][2015-04-11T09:27:15]i338: Acquiring package: WinUsbCoInstallers, payload: WinUsbCoInstallers, download from: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... trying to process HTTP status code anyway.
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Unknown HTTP status code 0, returned from URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed to send request to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed to connect to URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed to get size and time for URL: http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​...
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed attempt to download URL: 'http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... to: 'C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f​-462d-a981-403c43525256}\WinUsbCoInstallers'
    [3124:2D7C][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed to acquire payload from: 'http://download-fds.webapps.microsoft.com/supportF​iles/phones/files/recovery/Drivers/WinUsbCoInstall​... to working path: 'C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f​-462d-a981-403c43525256}\WinUsbCoInstallers'
    [3124:2D7C][2015-04-11T09:27:15]e313: Failed to acquire payload: WinUsbCoInstallers to working path: C:\Users\Lohith\AppData\Local\Temp\{a8b207a1-a05f-​462d-a981-403c43525256}\WinUsbCoInstallers, error: 0x80072efd.
    [1E60:37F0][2015-04-11T09:27:15]i351: Removing cached package: WinUsbDeviceRemover, from path: C:\ProgramData\Package Cache\CAE10F2B5EDDD7A95406FFA73F7B6E029138C09E\
    [1E60:37F0][2015-04-11T09:27:15]i351: Removing cached package: CommunicationLayerCleaner, from path: C:\ProgramData\Package Cache\42253689C4295B7B23419779293A6F8A3D623688\
    [1E60:37F0][2015-04-11T09:27:15]i351: Removing cached package: CheckFreeDiskSpace, from path: C:\ProgramData\Package Cache\{4E893B08-5155-4C03-A80C-7D9E96FFDDD2}v1.00.​0000\
    [3124:05F4][2015-04-11T09:27:15]e000: Error 0x80072efd: Failed while caching, aborting execution.
    [1E60:3238][2015-04-11T09:27:15]i330: Removed bundle dependency provider: {a8b207a1-a05f-462d-a981-403c43525256}
    [1E60:3238][2015-04-11T09:27:15]i352: Removing cached bundle: {a8b207a1-a05f-462d-a981-403c43525256}, from path: C:\ProgramData\Package Cache\{a8b207a1-a05f-462d-a981-403c43525256}\
    [3124:05F4][2015-04-11T09:27:16]i399: Apply complete, result: 0x80072efd, restart: None, ba requested restart: No

    Hi, Lohithmohan. Welcome to Microsoft Mobile Community! Does your PC meet the following requirements?
    Microsoft Windows 7 or newer.
    USB cable to connect your phone to the computer.
    Minimum 4 GB free storage space.
    Were you able to test it using another computer? Did you obtain the tool from our MS local page? We'll be waiting for your response.

Maybe you are looking for

  • IOS 8 - iCloud Keychain with Multiple Login Accounts for a Site

    I use iCloud Keychain to store multiple login accounts for a single website. When using Safari on a Mac, the last login account I used for that site is prepopulated in yellow fields. If I want to change the login account, I clear the field with the l

  • Can't Connect to our Company Network

    Good morning! I'm new to MAC computers so bare with me. I'm using a MAC at work and I'm not able to access the company Network. I've had our IT lady take a look with no luck. Is there anyone out there that can help?

  • CSM and SLB

    I'm trying to put together some plans for a design that requires some type of server load balancing and I'm hoping some body could clarify a few things for me. I plan to run a 6506 w/Sup720 with Cisco IOS. No Cat OS and MSFC IOS (hybrid). 1) To do SL

  • What is the procedure for getting my IP Profile in...

    I have recently moved to BT from Talk Talk. I believe that Talk Talk were LLU in my exchange, and the service was via BT Wholesale. While I was with Talk Talk, I took some steps to maximise broadband speed: Removed all unnecessary internal extension

  • App clean master on android

    hi is there an alternative to the app clean master on android?