NO SOUP for you!  (8107 Windows Phone Update)

http://www.wpcentral.com/verizon-set-push-out-latest-windows-phone-os-update-htc-trophy
Verizon has made a step in the right direction.  The Windows Phone 8107 update that AT&T told thier customers that THEY COULD NOT HAVE is being released to all WP Trophy customers with Verizon.

It is odd, but the even weirder thing is when WP7.5 was released late last year, they did the same thing in succession. I think it was 4 updates in a row. The updates *are* cumulative and contain all of the prior fixes, but for some reason, they're applied to the phones one update at a time, rather than just applying the final available version. Might be something Microsoft knows about but needs to fix with an update to the Zune software. It has been almost a year or so since that has been updated.

Similar Messages

  • Is there a timeline for availability on Windows Phone of W10?

    The vision of Microsoft is to have one integrated OS for workstation and phone.
    As part of the technical preview of W10 we would like to plan the W10 phone trials.
    Is there a timeline for availability on Windows Phone of W10 operating system?
    appreciate your answer,
    regards,
    Frank

    You may follow Window Blog:
    http://blogs.windows.com/
    And all information and announcements will be posted there.
    If you are looking for Universal Apps (which they could run both in Windows and Windows Phone), take a look at:
    http://msdn.microsoft.com/en-us/library/windows/apps/dn609832.aspx

  • When is the release date for Firefox on Windows Phone? (Specifically the 'phone of the year' - the Lumia1020). Thank you.

    New to the Windows Phone environment (former Apple fanboy/big Android fan)... the Lumia1020 had such an amazing camera, I had to switch. And it's incredible. No regrets so far...I really am surprised how much I like the WP interface... the live tiles/customization is incredible... and they are starting to get all the major apps now (obviously no where near the selection as the competition, but enough of the big ones where I can still function as I did). Sadly though they are still severely lacking in this browser category. Internet Explorer is too slow. Whoever comes to market first - Firefox or Chrome is going to have a monopoly on their hands going forward... I'd highly suggest you get a team of developers and start working on an app as soon as possible. It's a win-win for everyone!
    Thank you

    Currently there are no plans for a version of Firefox for Windows Mobile.

  • Windows Phone Update to version 7.10.8107.79

    I have done the recent zune update and my Windows Phone version still says:  7.10.7740.16
    Why when the front page of this site says differen?

    @Jon_
    There are two possible updates available OS version & Firmware revision
    Happy to have helped forum with a Support Ratio = 42.5

  • How to open standard New Contact Dialog and set phone for it on WIndows Phone 8.1

    It is not possible to add contact to strandard collection. You can add contact only to your application collection. But if your application will be removed you will lost all it contacs.
    That's why I want to open standard windows phone 8.1 dialog for adding new contact user and set Phone in it.
    Is it possible to open standard dialog for adding contact with specifi info from C# ?
    My .NET Blog with projects and feedback.
    Since May 30, 2014 I am waiting for Microsoft fix
    these 2 bug. If you know how to speed them up, please help

    I guess another option is to have the users log in with there Microsoft account and add contacts to there Microsoft account with the live sdk

  • Authentication issue for Fedrated in Windows Phone mdm

    Hi group , i am implementing Windows phone MDM using Federated authentication mode. I succeeded in  OnPremise authentication mode. But if use  Federated authentication mode i am seeing following errors in logs. I am using windows phone
    8.1 device. I added EnrollmentPolicyServiceUrl,EnrollmentServiceUrl,AuthenticationServiceUrl
    in xml.
    GetEndpointsFromResponse() uses authentication mode (NULL). , 1, 45.574597604
     Unknown authentication mode (NULL) is used.
     Data transmission attempt (1) failed with (2149056518). , 1, 45.575081406
     [MDM Enroll End] Error HRESULT: 0x8018000
    Any advise would be greatly appreciated.

    This error suggests that the AuthPolicy node of your discovery response is either empty or could not be found. 
    Can you post the payload of your discovery response in this case?
    Eric Fleck, Windows Store and Windows Phone Developer Support. If you would like to provide feedback or suggestions for future improvements to the Windows Phone SDK please go to http://wpdev.uservoice.com/ where you can post your suggestions and/or cast
    your votes for existing suggestions.

  • ActiveSync and Personal Contact Groups for Mobile (incl Windows Phone)

    Hello,
    As more MDM's (including BES10, Airwatch, native Windows Phone etc - besides Good For Enterprise) are moving towards EAS for enterprise e-mail sync, and I myself have 2 devices which have forced me to use EAS, I noticed that the various personal contact
    groups that I've created in Outlook are no longer available from these devices. Only on my BES 7 blackberry torch can I still find the personal distribution lists a.k.a. contact groups (not from GAL, but created in outlook) to appear, probably since it doesn't
    use EAS.Is there a way to enable syncing personal distribution lists? It seems to be a real productivity killer to not have this ability and to try and remember the group's members or select them especially for larger lists each time.
    Thank you

    Thanks for the reply (although the link you provided is referencing using Outlook 2013 for Outlook.com type hosted accounts). My situation is Outlook in an on-prem enterprise Exchange environment but with mobile devices that connect to exchange via EAS.
    If the response is still the same, then my follow up question is - why not? And what is the alternative to "contact groups" in the EAS world?

  • Transitions for page navigation windows phone 8 VS3013

    Hi. I installed the WPtoolkit and the
    Microsoft.Phone.Controls.Toolkit is under the references in References folder and I still can't use thenamespace
    Microsoft.Phone.Controls.Toolkit.dll in code-behind file? How do I add transition effects between page navigation? Thank you in advance.
    I also tried to add this line in the XAML:
    xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

    Here's an example.
    Open a new project and select the Windows Phone Silverlight Databound App template (using this as an example because it has multiple pages already set up).
    Install WPToolkit using Nuget.
    In App.xaml.cs, search for this line:
            RootFrame = new PhoneApplicationFrame();
    and replace it with this:
            RootFrame = new TransitionFrame();
    In both MainPage.xaml and DetailsPage.xaml, add the xmlns:
        xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    and add this xaml before the LayoutRoot:
    <toolkit:TransitionService.NavigationInTransition>
    <toolkit:NavigationInTransition>
    <toolkit:NavigationInTransition.Backward>
    <toolkit:TurnstileTransition Mode="BackwardIn" />
    </toolkit:NavigationInTransition.Backward>
    <toolkit:NavigationInTransition.Forward>
    <toolkit:TurnstileTransition Mode="ForwardIn" />
    </toolkit:NavigationInTransition.Forward>
    </toolkit:NavigationInTransition>
    </toolkit:TransitionService.NavigationInTransition>
    <toolkit:TransitionService.NavigationOutTransition>
    <toolkit:NavigationOutTransition>
    <toolkit:NavigationOutTransition.Backward>
    <toolkit:TurnstileTransition Mode="BackwardOut" />
    </toolkit:NavigationOutTransition.Backward>
    <toolkit:NavigationOutTransition.Forward>
    <toolkit:TurnstileTransition Mode="ForwardOut" />
    </toolkit:NavigationOutTransition.Forward>
    </toolkit:NavigationOutTransition>
    </toolkit:TransitionService.NavigationOutTransition>
    /li>

  • ActiveSync autodiscover not working for iPhone but for Android and Windows Phone

    Hi
    We have setup an Exchange 2013 hosted environment, where different mail domains are running on it.
    The main domain is mydomain.com. One of the client domains is customer.com.
    Autodiscover for customer.com has a cname which points to autodiscover.mydomain.com, on our firewall this url is redirected to autodiscover-s.mydomain.com, where our public certificate for mydomain.com is applied. Autodiscover for all
    our customers finally ends at autodiscover-s.mydomain.com.
    Outlook WebApp, Outlook Anywhere and ActiveSync for all customers is reachable through mail.mydomain.com.
    Everything works fine, except of autodiscover for iPhones. I always have to enter the server name mail.mydomain.com manually. After that ActiveSync works on iPhones as well.
    The Problem doesn’t exist on Androids and Windows Phones.
    Any suggestion?
    Regards
    Peter

    Yes, Interestingly same configuration is working in my home lab, but not working at customer. The version is 10.5
    Cannot say wireless issue as jabber for windows is working from wireless

  • Realtime API for http server Windows Phone 8

    Hi. I'm trying to create a realtime connection and I'm trying the figure out how to create consistent realtime connection with the server over http. I achieved this with sockets when I had a VPS and now I need to do the same thing over http server. Is there
    a simple and easy way to achieve this? My aim is to create this
    realtime-consistent connection with Windows Phone 8 Silverlight SDK.
    Thanks in advance

    Take a look at SignalR
    http://channel9.msdn.com/posts/Building-real-time-connected-apps-with-Windows-Phone-8-and-SignalR

  • Hello ~ can anyone tell me if I can get flash player for HTC HD7 windows phone?

    HELLO IS THERE ANYONE OUT THERE THAT CAN TELL ME IF THERE IS A FLASH PLAYER AVAILABLE FOR THE T-MOBILE HTC HD7 WINDOWS MOBILE PHONE? I CANNOT GET ANY ANSWERS OUT OF T-MO & I CANNOT WATCH ALL THOSE FUN VIDEOS WITHOUT IT...I WOULD TRULY APPRECIATE IT....THANKS....JILL

    Apple does not have email support. If you're not getting the email verification from Apple, check your anti-spam filters, on your computer and with your email provider, to make sure that emails from Apple aren't being blocked. You can also try the Security Questions option rather than the email authentication. See:
    http://support.apple.com/kb/HE36
    Otherwise, you'll need to call Apple support:
    http://support.apple.com/kb/HE57
    Regards.

  • Is it possibly for you apple guys to update a iphone 3gs to ios 5

    i have a iphone 3gs and i want to update it to ios 5.0 but i cant can you guys do it

    An iPhone 3GS can only be updated directly to 6.1.3; for devices running iOS 4.1, this must be done from iTunes on a computer, and if possible, the computer it normally syncs with.
    (98768)

  • Windows phone update

    Can I update my Lumia 720 windows 8 to windows 8.1

    There you go …
    I recommend to subscribe to that thread (top, left-hand side) because when Lumia Cyan gets released, you get notified by E-mail.

  • Mac mini, macbook + DVI to HDMI + projector = No soup for you!

    This is driving me nuts!!! I have tried 3 different macs, 4 completely different cables/adapters and they all do exactly the same thing.
    1. I connect the mac to the DVI to HDMI cable and/or adapter combo, then connect to the projector
    2. I get 2-30 seconds of wonderful projector screen usage (it works, picture looks crystal clear)
    3. Then POOF! No projector signal, though it appears mac recognizes the projector.
    I can repeat from 1 using a different adapter and/or cable and I get exactly the same results, but if I re-use the same cable I used previously, I get no signal at all.
    What the $%@! is going on here??? Is Apple black-listing my cables or something??? I'm using everything from cheap-o cables to $$$ cables with exactly the same result.I run this projector with absolutely no problem from a dell desktop via DVI to HDMI.
    For what it's worth, I'm connecting to a LG HS201 projector.
    using Core-2-duo macs either with pure DVI or mini-DVI

    samberl wrote:
    DVI to HMDI is not supported on the Core 2 Duo Mac Mini.
    You need to connect via DVI or VGA to your projector.
    I have had Core2Duo Mac minis working with Sony LCD TVs and a Toshiba Plasma via DVI to HDMI cables with no problems. Obviously audio has to be run separately. There have been many reports from others that this works. It should do since both DVI and HDMI support HDCP and both are digital video connections, this after all is why a simple DVI to HDMI cable works.
    What can be an issue is if your trying to do things like 3D or YCbCr colour encoding. However standard video works fine. Another common issue is if your are switching inputs to the TV perhaps via an AV Receiver or if the TV is allowed to sleep or be turned off, in these cases the Mac can see the handshake signal disappear. It is for this sort of situation Gefen makes the DVI Detective+ and the HDMI Detective+.
    Since in your case the common factor is your projector and not the computer or cables it might be it at fault. Early HDMI products did have HDCP handshaking problems.
    People have been using Mac minis as media center computer with HDMI for ages since the Mac mini is small and quiet, this probably goes back as far as G4 models let alone Core2Duo models.

  • Hash for Lightroom_5_LS11.exe (windows LR5 update)

    Can someone provide me an MD5 for Lightroom_5_LS11.exe so I can verify download integrity?  My downloads keep getting corrupted, and I want to be able to confirm a good download, if and when I get that.  Thanks
    PS: Could be any hash: CRC, SHA-1, etc.

    Hi danburn,
    The MD5 checksum for Lightroom 5 is : 5AC3F3644F8150F369BE6FABD4C6A03D
    For corrupted downloads issue try downloading from the direct download links available at : http://prodesigntools.com/lightroom-5-ddl-comparison-vs-lr4.html
    But make sure you follow the important steps mentioned on the page before initiating the download.

Maybe you are looking for

  • How can i change my app store back from usa to netherlands

    I apparently searched for an App that was not in the Dutch store. I got an message asking if I wanted to try in the US Appstore. I chose  OK and was redirected. Now i cannot get back to the Dutch store and any updates to Apps will not load as I am in

  • How to undo "select distinct" in OBIEE

    Hello guys I found that pretty much in all the reports that we created in OBIEE, the presentation service would generate SQL that starts with "select distinct" when I view the query log.. I'd like to know what configuration in the Admin Tool or prese

  • •My Bootable Backup Solution for OSX & XP on MBP 17"

    Hi, I thought I would share my solution to getting a bootable back up of both my OSX partition and my Boot Camped XP partition on my MBP 17" If you have ever had a HD meltdown and had to re-install everything, your probably now like me, a back up fan

  • How to make one user get locked to edit when another user is editing??

    Dear friends, In the webdynpro application option is given to controll the editability of the UI elements using edit button.When the same application is logged in by another user for ex: B , he should get a prompt saying user A is editing the page. H

  • Reset Password - APEX_UTIL.RESET_PW

    I am trying to give my end users something similar to 'Forgot Password'. Becuase they are not logged in yet, and are not Admins I didn't see a way to easily do this. So I what I am trying to do from 'Forgot Password' page is to log in as an Admin and