RESOLVED : Windows Phone – Download reporting issue related to 11/1/14 – 11/9/14 data

Update 3/22 - the below issue has been resolved.
It has come to our attention that certain Windows Phone download reporting aggregations are not matching. After investigation, we found an issue related to 11/1/14 – 11/9/14 transactions.  For example, if you chose an “All
app” aggregation (6 month view) and compared it to “Monthly by app” aggregations (6 month view), the totals weren’t matching.  The root cause of the issue was due to the 11/1/14 – 11/9/14 data not being considered for all  of the available aggregations.
We are scheduled to fix the issue today. 
If you have transactions between 11/1/14 – 11/9/14, you will see an increase in the following aggregation totals once the fix is completed:
Monthly aggregations (6 and 12 month views) by app and in-app aggregations
Cumulative downloads – app and in-app aggregations
Please note, this is strictly a download reporting issue.  There is no impact to any payout reporting or payout amounts.
When the fix has been completed, I will update this post.
Thanks,
Patrick

Update 3/22 - the below issue has been resolved.
It has come to our attention that certain Windows Phone download reporting aggregations are not matching. After investigation, we found an issue related to 11/1/14 – 11/9/14 transactions.  For example, if you chose an “All
app” aggregation (6 month view) and compared it to “Monthly by app” aggregations (6 month view), the totals weren’t matching.  The root cause of the issue was due to the 11/1/14 – 11/9/14 data not being considered for all  of the available aggregations.
We are scheduled to fix the issue today. 
If you have transactions between 11/1/14 – 11/9/14, you will see an increase in the following aggregation totals once the fix is completed:
Monthly aggregations (6 and 12 month views) by app and in-app aggregations
Cumulative downloads – app and in-app aggregations
Please note, this is strictly a download reporting issue.  There is no impact to any payout reporting or payout amounts.
When the fix has been completed, I will update this post.
Thanks,
Patrick

Similar Messages

  • RESOLVED : Windows Phone – Download/In-app reporting fix begins tonight

    Update 4/2/15: The processing is complete.  The below issue is resolved.
    We have identified some download and in-app purchase transactions that were not appearing in the Windows Phone Dev Center dashboard for the November to present timeframe.
    We will start the process to add these transactions back tonight. The process will be completed in approximately a week.
    Please note the following:
    We will add data one month at a time. The most current data will be processed first (March 2015) and then work backwards to November 2014. 
    As each month is processed, you may see increases in your download/in-app reporting numbers for that month.
    You will not lose visibility into any data. 
    Transactions will continue to be shown in the Windows Phone Dev Center portal, while in parallel, we will add back the historical data.
    Only some developers were missing transactions, so you may not see any changes in your download/in-app numbers.
    This issue only impacts
    Windows Phone download/in-app numbers.  Windows Phone payout data, and Windows data is unaffected.
    We will update this post when the process is complete.
    Thank you,
    Patrick

    Hello,
    Skype for Windows Phone 7 has been discontinued and stopped working. Please read this:
    https://support.skype.com/en/faq/FA34489/is-skype-for-windows-phone-7-being-discontinued
    Skype für Windows Desktop: v7.4.x.102
    Skype für Mac OSX: v7.7.335
    ↓ Did my reply answer your question? Accept it as a solution to help others. Thanks! ↓
    ↓ Hat mein Post deine Frage beantwortet? Akzeptiere ihn als Lösung, um anderen zu helfen. Vielen Dank! ↓ .

  • Adobe Reader Windows Phone Download Link

    Hey guys,
    For iOS / Android users - browsing to get.adobe.com/reader/ redirects the user to the Application Store for the platoform so they can download Adobe Reader.  However, browsing this link fails when using a Windows Phone - it doesn't redirect the user to the windows phone store. 
    Thanks,
    Jon

    [topic moved to Windows Phone subforum]

  • S_ALR_87012178 Report -Issue Related to Interest calculations

    Hi,
    When we run a customer open item analysis S_ALR-87012178  we see that there looks to be interest for overdue balances showing on the report. It doesn't appear to be assigning the interst to the customer, but I wanted to see why this was here and if we have the ability to assing interest to balances. And also where you would turn this on and off in the system or for a customer.
    Kindly adivce me on this issue.i am confused because i didnot understand what they are asking.
    Thanks
    Sunitha

    Hi,
    You can go to F.99 in order to see all the reports for Customers.
    Hope you will find the best suitable report.
    When you are using "Drill down reports" do not forget to select
    "Object list (more than one lead column)" this would give you a option to sort them the line items as you want.
    Just for your information: SAP1 is the transaction code for all the reports in SAP.
    Regards,
    Ravi

  • How to update a ListBox binding when a toast message arrives in windows phone

    I have a MVVM windows phone application and it has a Home page where after entering login data it goes to "Posts" page.
    Posts page has PostsModel with the following data :
    class MyClass
    public string NewPostText { get; set; }
    public string NewPostSender { get; set; }
    public string NewPostAttachment { get; set; }
    "Posts" page has the following View Model and GetPosts will read data from isolatedstorage for now i have hardcoded with some static data though.This data needs to be stored back to isolated storage while exiting the app.
    private PostsViewModel _PostsViewModel ;
    public Conversation()
    InitializeComponent();
    _PostsViewModel = new PostsViewModel ();
    this.DataContext = _PostsViewModel ;
    public ObservableCollection<PostsModel> MyPostsDataSource
    get
    if (_MyPostsDataSource== null)
    _MyPostsDataSource= GetMyPosts();
    return _MyPostsDataSource;
    set
    this._MyPostsDataSource = value;
    RaisePropertyChanged("MyPostsDataSource");
    "Posts.cs" has only the following code:
    protected override void OnNavigatedTo(NavigationEventArgs e)
    base.OnNavigatedTo(e);
    "Posts" page has the following xaml:
    <ListBox x:Name="listMyPosts" ItemsSource="{Binding Path=MyPostsDataSource}" Grid.Row="0" >
    <ListBox.ItemTemplate >
    <DataTemplate >
    <StackPanel Orientation="Horizontal">
    <TextBlock Text="{Binding NewPostText ,Mode=TwoWay}"/>
    <TextBlock Text="{Binding NewPostSender}"/>
    </StackPanel>
    <Image x:Name="SenderImage" Margin="8" Source="/MyApp;component/Assets/Icons/NewPostAttachment.png"/>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    First time when app loads the static data i have shows all the data in the list box without any issues but when a toast message comes all the data is gone and also the new message is also not displayed.
    The question i have is when i get a new toast message(to Posts.xaml page) i just want to refresh the current Posts page with the latest message details . And i dont know how to do this and whether i need to handle this in the page NavigatedTo method(if
    so how do i refresh the or atleast reload the Posts.xaml page with its PREVIOUS data plus the new data as well) as the toast notification has the navigation uri of "/Posts.xaml" page.
    I would really appreciate any help on this ?

    For comparison , Its like a Chat application. When a new message comes and the message is from the user for which the conversation page is already open then we just append the message to it.
    In ShellNotificationReceived we are just calling the "Posts.xaml" page.
     Relative Uri here is " /View/Posts.xaml" plus some paraemters like sender email id , sender message and the image..
    Application.Current.RootVisual
    asPhoneApplicationFrame).Navigate(newUri(relativeUri,
    UriKind.RelativeOrAbsolute))
    Krrishna

  • I heve problem with my WCF and Windows phone 8

    This's IserviceBotanero.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Runtime.Serialization;
    using System.ServiceModel;
    using System.Text;
    namespace WcfServiceBotanero
    // NOTA: puede usar el comando "Rename" del menú "Refactorizar" para cambiar el nombre de interfaz "IServiceBotanero" en el código y en el archivo de configuración a la vez.
    [ServiceContract]
    public class Producto
    int idProducoto;
    [DataMember]
    public int IdProducoto
    get { return idProducoto; }
    set { idProducoto = value; }
    string nombreProductos;
    [DataMember]
    public string NombreProductos
    get { return nombreProductos; }
    set { nombreProductos = value; }
    int cantidad;
    [DataMember]
    public int Cantidad
    get { return cantidad; }
    set { cantidad = value; }
    string precioCompra;
    [DataMember]
    public string PrecioCompra
    get { return precioCompra; }
    set { precioCompra = value; }
    string precioVenta;
    [DataMember]
    public string PrecioVenta
    get { return precioVenta; }
    set { precioVenta = value; }
    string descripcion;
    [DataMember]
    public string Descripcion
    get { return descripcion; }
    set { descripcion = value; }
    [ServiceContract]
    public interface IServiceBotanero
    [OperationContract]
    List<Producto> listado();
    void DoWork();
    this is ServicesBotnero.svc
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Runtime.Serialization;
    using System.ServiceModel;
    using System.Text;
    namespace WcfServiceBotanero
    // NOTA: puede usar el comando "Rename" del menú "Refactorizar" para cambiar el nombre de clase "ServiceBotanero" en el código, en svc y en el archivo de configuración a la vez.
    // NOTA: para iniciar el Cliente de prueba WCF para probar este servicio, seleccione ServiceBotanero.svc o ServiceBotanero.svc.cs en el Explorador de soluciones e inicie la depuración.
    public class ServiceBotanero : IServiceBotanero
    DataClasseBotaneroDataContext botanero = new DataClasseBotaneroDataContext();
    public List<Producto> listado()
    var qry = from p in botanero.producto
    select new Producto
    IdProducoto = p.idProducoto,
    NombreProductos = p.nombreProducto,
    PrecioCompra = p.precioCompra,
    PrecioVenta = p.precioVenta,
    Descripcion = p.Descripcion
    return qry.ToList();
    public void DoWork()
    page view 
    <phone:PhoneApplicationPage
    x:Class="PhoneApp1.PageProductolocal"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    mc:Ignorable="d"
    shell:SystemTray.IsVisible="True">
    <!--LayoutRoot es la cuadrícula raíz donde se coloca todo el contenido de la página-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <!--TitlePanel contiene el nombre de la aplicación y el título de la página-->
    <StackPanel Grid.Row="0" Margin="12,17,0,28">
    <TextBlock Style="{StaticResource PhoneTextNormalStyle}">
    <Run Text="Productos"/>
    <LineBreak/>
    <Run/>
    </TextBlock>
    </StackPanel>
    <!--ContentPanel. Colocar aquí el contenido adicional-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
    <ListBox x:Name="ldlProducto" >
    <ListBox.ItemTemplate>
    <DataTemplate>
    <StackPanel HorizontalAlignment="Center">
    <TextBlock Padding="10" Text="{Binding IdProducto }" ></TextBlock>
    <TextBlock Text="{Binding NombreProduco }" ></TextBlock>
    <TextBlock Text="{Binding PrecioCompra }" ></TextBlock>
    <TextBlock Text="{Binding PrecioVenta }" ></TextBlock>
    <TextBlock Text="{Binding Cantidad }" ></TextBlock>
    <TextBlock Text="{Binding Descripcion }" ></TextBlock>
    </StackPanel>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    </Grid>
    </Grid>
    </phone:PhoneApplicationPage>
    PageProductolocal.xaml.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Windows.Documents; //
    using System.Windows.Input; //
    using System.Windows.Media; //
    using System.Windows.Media.Animation; //
    using System.Windows.Shapes; //
    using System.Net;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Navigation;
    using Microsoft.Phone.Controls;
    using Microsoft.Phone.Shell;
    using PhoneApp1.ServiceReferenceBotanero;
    namespace PhoneApp1
    public partial class PageProductolocal : PhoneApplicationPage
    public PageProductolocal()
    InitializeComponent();
    //instancia o Referencia al wcf
    ServiceBotaneroClient proxy = new ServiceBotaneroClient();
    proxy.listadoCompleted += new EventHandler<listadoCompletedEventArgs>(listado);
    proxy.listadoAsync();
    private void listado(object sender, listadoCompletedEventArgs e)
    if (e.Error == null)
    ldlProducto.ItemsSource = e.Result;
    and SW Runing
    So and this is the error shown
    El código de usuario no controló System.ServiceModel.CommunicationException
    HResult=-2146233087
    Message=The remote server returned an error: NotFound.
    Source=System.ServiceModel
    StackTrace:
    at System.ServiceModel.AsyncResult.End[TAsyncResult](IAsyncResult result)
    at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
    at System.ServiceModel.ClientBase`1.ChannelBase`1.EndInvoke(String methodName, Object[] args, IAsyncResult result)
    at PhoneApp1.ServiceReferenceBotanero.ServiceBotaneroClient.ServiceBotaneroClientChannel.Endlistado(IAsyncResult result)
    at PhoneApp1.ServiceReferenceBotanero.ServiceBotaneroClient.PhoneApp1.ServiceReferenceBotanero.IServiceBotanero.Endlistado(IAsyncResult result)
    at PhoneApp1.ServiceReferenceBotanero.ServiceBotaneroClient.OnEndlistado(IAsyncResult result)
    at System.ServiceModel.ClientBase`1.OnAsyncCallCompleted(IAsyncResult result)
    InnerException: System.Net.WebException
    HResult=-2146233079
    Message=The remote server returned an error: NotFound.
    Source=System.Windows
    StackTrace:
    at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
    at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
    at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
    InnerException: System.Net.WebException
    HResult=-2146233079
    Message=The remote server returned an error: NotFound.
    Source=System.Windows
    StackTrace:
    at System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
    at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClasse.<EndGetResponse>b__d(Object sendState)
    at System.Net.Browser.AsyncHelper.<>c__DisplayClass1.<BeginOnUI>b__0(Object sendState)
    InnerException:
    That is not what I need or what the error if 
    Help Me!

    Hi,
    You could try to use HttpClient to consume wcf in windows phone 8.
    Here is an exsample you could refer:
    http://stackoverflow.com/questions/21536825/windows-phone-8-call-wcf-web-service
    Besides, you could refer to :
    http://www.codeproject.com/Questions/691619/Consuming-WCF-Service-from-Windows-Phone
    Since this issue is more related to Windows Phone, If my reply no help, please move to Windows Phone forum for a better support, It is appropriate and more experts will assist you.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • BW Reporting Issue

    Hi,
    I am facing one reporting Issue relating to Display Attributes.
    Characteristic: Business Partner
    Display Attributes: Address0, Address1, Address3...etc.
    Requirement is to display mentioned Display attributes along with Business Partner.
    For this I have selected Business Partner as characteristic and mentioned above three as display attributes to Business Partner.
    But Query out put is not showing Display attributes. For this I have done all settings at reporting level, all gone vain.
    I am using Bex 7.0.
    Kindly look in to the Issue and let me know the solution.
    Regards,
    Venkat.Mahipathi.
    09886652422.
    [email protected]

    Hi,
    Check in Reporting properties or check attributes in analyzer proprties then it will display  
    ************asign points if usefull***********
    swapna

  • New software update still not downloading.  Apps updates have all downloaded since iTunes issue resolved.  Is the software issue also related to this, or is there another problem?  This is on my iPhone 6, not my Mac.

    Trying to download the iOS 8.2 software update on my iPhone 6, but it won't update.  All app updates have resolved since the iTunes issue was resolved.  Is the software update issue related to this as well, or is it another problem entirely?
    I've synced it to iTunes, turned it off/on, etc., but still not downloading.
    Any help is appreciated.
    Thanks.

    Hi DebC64,
    So is the iOS 8.2 update not downloading to your iPhone, computer or both?
    You have synced it to iTunes, that is an option to update if it's not updating wirelessly.  Please see if other steps help.
    Resolve iOS update and restore errors in iTunes - Apple Support
    Regards,
    Nubz

  • [ADOBE]  Resolving Windows Flash Player permission-related issues 9/2007

    Printable, formatted versions of these steps, valid as of
    9/15/2007 are available. I recommend printing them and following
    along with the print version:
    .doc:
    http://www.supportflash.com/bent/flash_player_ocx_troubleshooting.doc
    .pdf:
    http://www.supportflash.com/bent/flash_player_ocx_troubleshooting.pdf
    The issue is this: You have multiple accounts on your XP
    machine. One account plays Flash no problem, the other doesn't,
    although both are Administrator accounts. Or possibly you have only
    one account, and that account fails to play any Flash content. In
    any case if you have ANY odd trouble with the Flash Player ActiveX
    control for Windows as of September 2007, these should be your
    steps. And yes, you need to do both sets of steps, in order!
    The cause: This is usually caused by either or BOTH of the
    following problems:
    1. Leftover locked bits of an old Flash Player installation
    2. Registry permission errors (aka 'ACL's)
    OK so what do you do about this?
    ONE: Identify possibly leftover Flash player bits
    a. Open C:\WINDOWS\system32\Macromed\Flash folder.
    b. Download the latest FP uninstaller from
    http://www.adobe.com/go/tn_14157.
    c. Run the uninstaller. If you get a notice saying you need
    to reboot, then reboot.
    d. Look at C:\WINDOWS\system32\Macromed\Flash folder.
    e. Does any file ending in .ocx remain? (flash.ocx,
    flasha.ocs, flash9d.ocx etc...)
    e1. If no, then you don't usually have any leftover locked
    bits.
    You're done with this part of the problem, proceed to TWO.
    e2. If yes, then that remaining .ocx file may be locked.
    Right click it
    and select properties and look at the version tab.
    What is the version number?
    f. Is the version number Flash Player 9.0.16.0 or earlier?
    f1. Use the uninstaller instructions from this technote:
    http://www.adobe.com/go/4da116d3
    -- section "Flash Player 9.0.16.0 and earlier"
    -- DO NOT re-register the uninstaller. ONLY do this
    UninstFl.exe part.
    Yes, you'll need to know how to use the command line to do
    this. If you're not
    comfortable with that then take your machine to someone who
    is!
    g. Is the version number Flash Player 9.0.28.0 or higher?
    g1. Use the uninstaller instructions from this technote:
    http://www.adobe.com/go/4da116d3
    -- section "Flash Player 9 (9.0.28.0) and later"
    -- DO NOT re-register the uninstaller. ONLY do this
    UninstFl.exe part.
    In both the D and E sections above you'll need to use the
    specific name of the control that remains
    in the C:\WINDOWS\system32\Macromed\Flash. So if you had a
    stuck flash9b.ocx[DJM1] in the folder
    and version was 9.0.28.0, your uninstall command would look
    like this:
    UninstFl.exe -u
    c:\windows\system32\Macromed\Flash\Flash9b.ocx
    That said, if you have trouble running these commands it
    really is necessary to find someone who knows how
    to use the command line, either a friend or a local
    professional. Or spend some time learning about the
    command line yourself.
    h. RERUN the uninstaller you downloaded earlier. This should
    get rid of the remaining (now unlocked) .ocx file and fix any
    registry keys associated with it.
    ALL of section "ONE: Identify possibly leftover Flash player
    bits" is important. BUT this locked bit problem only happens on
    maybe one out of 50 machines. So most people with installation
    problems such as this are not going to have locked bits.
    AND even after reinstalling you may still have continued
    problems with Flash Player not being recognized.
    Then we have to move on to section two..
    TWO: Registry Permission Problems
    We have been working on Flash Player failures caused by
    Windows System Registry issues. We have not been able to determine
    what’s causing these permissions to change. But that change
    prevents the successful installation of Flash Player ActiveX
    control (used by IE Windows).
    Registry permission problems can be resolved using a tool
    called SubInACL, built by Microsoft to correct system registry
    issues.
    Symptoms: What to look for:
    1. If you install Flash Player on IE and are unable to see
    Flash content on any webpage
    2. After installation C:\WINDOWS\system32\Macromed\Flash
    will have flash 9c.ocx in it but it failed to register
    3. It appears that Flash Player installed correctly, but
    unable to view Flash content
    4. Flash Player works on other browsers, but NOT Internet
    Explorer
    5. If you are missing groups in HKEY_CLASSES_ROOT Advanced
    Permissions
    6. If you have run registry cleaners in the past, this may
    have corrupted your system
    Warning: The following solution involves the Windows System
    Registry. Editing or manipulating the registry incorrectly can
    result in serious system damage which may require re-installation
    of the operating system. If you are not comfortable editing the
    registry, then take your system to a professional. If you choose to
    proceed, then it is essential that you create a complete system
    backup and a Windows System Restore Point before proceeding. Adobe
    Systems cannot be held responsible for damage resulting from this
    information.
    1. Select Start > Run
    2. Type in “regedit”
    3. Right click on HKEY_CLASSES_ROOT
    4. Select Permissions
    5. Select Advanced
    For Vista
    Compare your permissions with the ones in this screenshot.
    http://www.supportflash.com/vista_key.png
    For Window XP Pro or other flavors of XP
    Compare your permissions with the ones in this document
    “Troubleshooting system registry issues that prevent Flash
    Player installation” (scroll down to the bottom of page).
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=kb400116
    Notice any major differences, missing groups, incorrect
    permissions?
    How can you repair the System Registry, what's the fix
    Download SubInACL from Microsoft to fix permission issues
    that prevent the Flash Player Installation.
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=fb1634cb
    NOTE: The Microsoft version of the .cmd script run by
    SubInACL is not be run on any XP version other than Pro. HOWEVER,
    the Adobe .cmd script in the above technote is tested safe for ALL
    VERSIONS OF XP!!!
    If you have a Windows System Registry permission issue that
    sounds like the one described above, SubINACL may be the solution.
    Please note that if you have this issue on multiple accounts on one
    machine you’ll need to fix each account individually.

    quote:
    Originally posted by:
    BWolfe [ADOBE]
    Printable, formatted versions of these steps, valid as of
    9/15/2007 are available. I recommend printing them and following
    along with the print version:
    .doc:
    http://www.supportflash.com/bent/flash_player_ocx_troubleshooting.doc
    .pdf:
    http://www.supportflash.com/bent/flash_player_ocx_troubleshooting.pdf
    The issue is this: You have multiple accounts on your XP
    machine. One account plays Flash no problem, the other doesn't,
    although both are Administrator accounts. Or possibly you have only
    one account, and that account fails to play any Flash content. In
    any case if you have ANY odd trouble with the Flash Player ActiveX
    control for Windows as of September 2007, these should be your
    steps. And yes, you need to do both sets of steps, in order!
    The cause: This is usually caused by either or BOTH of the
    following problems:
    1. Leftover locked bits of an old Flash Player installation
    2. Registry permission errors (aka 'ACL's)
    OK so what do you do about this?
    ONE: Identify possibly leftover Flash player bits
    a. Open C:\WINDOWS\system32\Macromed\Flash folder.
    b. Download the latest FP uninstaller from
    http://www.adobe.com/go/tn_14157.
    c. Run the uninstaller. If you get a notice saying you need
    to reboot, then reboot.
    d. Look at C:\WINDOWS\system32\Macromed\Flash folder.
    e. Does any file ending in .ocx remain? (flash.ocx,
    flasha.ocs, flash9d.ocx etc...)
    e1. If no, then you don't usually have any leftover locked
    bits.
    You're done with this part of the problem, proceed to TWO.
    e2. If yes, then that remaining .ocx file may be locked.
    Right click it
    and select properties and look at the version tab.
    What is the version number?
    f. Is the version number Flash Player 9.0.16.0 or earlier?
    f1. Use the uninstaller instructions from this technote:
    http://www.adobe.com/go/4da116d3
    -- section "Flash Player 9.0.16.0 and earlier"
    -- DO NOT re-register the uninstaller. ONLY do this
    UninstFl.exe part.
    Yes, you'll need to know how to use the command line to do
    this. If you're not
    comfortable with that then take your machine to someone who
    is!
    g. Is the version number Flash Player 9.0.28.0 or higher?
    g1. Use the uninstaller instructions from this technote:
    http://www.adobe.com/go/4da116d3
    -- section "Flash Player 9 (9.0.28.0) and later"
    -- DO NOT re-register the uninstaller. ONLY do this
    UninstFl.exe part.
    In both the D and E sections above you'll need to use the
    specific name of the control that remains
    in the C:\WINDOWS\system32\Macromed\Flash. So if you had a
    stuck flash9b.ocx[DJM1] in the folder
    and version was 9.0.28.0, your uninstall command would look
    like this:
    UninstFl.exe -u
    c:\windows\system32\Macromed\Flash\Flash9b.ocx
    That said, if you have trouble running these commands it
    really is necessary to find someone who knows how
    to use the command line, either a friend or a local
    professional. Or spend some time learning about the
    command line yourself.
    h. RERUN the uninstaller you downloaded earlier. This should
    get rid of the remaining (now unlocked) .ocx file and fix any
    registry keys associated with it.
    ALL of section "ONE: Identify possibly leftover Flash player
    bits" is important. BUT this locked bit problem only happens on
    maybe one out of 50 machines. So most people with installation
    problems such as this are not going to have locked bits.
    AND even after reinstalling you may still have continued
    problems with Flash Player not being recognized.
    Then we have to move on to section two..
    Hi Bentley
    I've been having trouble with this for months and Asia
    Pacific support has been no help at all, now they are telling me
    that it it's a problem with my computer and they can't help me.
    I tried the first step above and it does seem that I have a
    locked component left over I think it is falsh9e.ocx. The version
    is 9.0.115.0 is the trouble is I can't complete the fix. Can you
    send me some detailed instructions to complete the step.
    This has been very frustrating and your assistance would be
    greatly appreciated.
    Doogs

  • Issue with Sqlite for Windows Phone 8.1!

    Hello all,
    I was working on a Windows phone 8.1 silverlight project, which I thought of discontinuing, and transform that same project as a Windows Phone 8.1 runtime project. After reading through a lot of articles on the web, which says that Windows Phone runtime API
    would be the one that will be used to develop applications for a variety of devices, so I thought of thinking on the long run and decided to stick with the Windows Phone runtime 8.1. 
    I am not sure whether I made a strange decision, since I moved to Windows phone runtime I haven't made a single step ahead in my project. What I get is all exceptions. I am trying hard to make SQLite work with my project, I am not sure what I am missing, I
    went through all the tutorials on the web and I feel that everything is right in my code.
    Here is the link to the project, could somebody have a look into it and advise me on what I am doing wrong.
    Project Link
    Thanks all.
    Thanks, Sumesh

    Hello Sumesh,
    From your description, it seems that your issue is related with windows phone development, and after checking the project with your provided download link, it seems to not be related with LINQ to SQL item, if you are actually want to ask a windows phone
    issue, you could ask it
    here. And I suggest that you could share these exceptions message you encounter with us on this forum.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Windows phone Nokia lumia 530 can't download any apps error code 80070490

    I have a new windows phone Nokia lumia 530. In trying to set it up I accidentally put a typo in my email address.I have done a use a different address as your primary alias, yesterday by making a new outlook account. However, I can't get the security code.
    Every time I try to download anything, including Cortata it tries to send it to the email address that doesn't exist.  
    HELP!
    Laurie 9323
       

    Hi,
    This is the incorrect forum however I have had this issue myself
    The issue is based on the Microsoft live account verification, if you created a new Microsoft Live account while registering the phone or registering for a new store account you will need to log into the windows live website with the same credentials and
    verify/validate the account.
    Once done, power off the device completely, then power it back on and you should be good to go :)
    Regards,
    M
    If you find my information useful, please rate it. :-)

  • Issues with 32GB micro SD with Windows Phone 8 and Lumia 810

    I bought 32 GB micro SDHC card (Sandisk) that causes issues such as:
    (1) tap Settings - then blank screen - then go back to Home
    (2) when shutting down WP8, it says "goodbye" forever and it does not go away. I have to detach the battery.
    (3) Occasional freezes - need to do step (2) to force reboot
    (4) Go to music > songs, causes OS to freeze
    (5) Go to music > albums, select one and cannot play - OS freeze
    I have huge library of MP3 and WMA that I want to keep them in the SD. I did it in 2 ways:
    (A) 
    Attach the micro SD (with adapter) into Windows PC, copy music folders to SD with Windows Explorer.
    (B) Attach the micro SD into Lumia 810, connect it to Windows PC. Windows detects the hardware, then using Windows Explorer, copy he music folders to Lumia 810 > SD card > Music.
    When I tried (A), 5 above issues came up. WP8 reported the SD card was corrupted. I run chkdsk to fix the SD card, but the 5 issues persisted after I inserted the SD. I formatted the SD card, and repeat
    (A), but the 5 issues persisted.
    I tried (B), then the copying process stopped in the middle. Windows Explorer reported error cannot copy file XXX. Then the 5 issues came up again.
    I am running out of ideas. What's wrong? SD, Lumia, or WP8? What should I do to have huge music files on the phone? Sorry, I can't play from the cloud.

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

  • Issue sideloading app on windows phone.

    I have a windows phone 8.1 running windows phone 8.1 update preview.
    Prompts me for "Add Workplace account?" instead of the 'install company app' when I download and install the AET.aetx certificate.
    The app never appears in the applist. 
    Please advise where i'm going wrong. 
    Thank you,
    Lou

    Hello,
    same issue with my app.
    After generating the app I received e-mail with instructions and links how to install it.
    Steps:
    1) click install certificate link - asks if I want to install Microsoft Corporation workplace account. Accepted and installed.
    2) click install app link - download the app and then asks if I want to Search the Store.
    My App is not installed. What I'm doing wrong? Some time ago I installed other app with no issues, but after some updates to App Studio I'm not able to do it anymore.
    Maybe there are some conflict with previous certificates? How can I check/remove them?
    Regards,
    Roman

  • Solution: iPad/iPhone Login issues with IIS as Reverse Proxy (Android and Windows Phone works)

    Hi,
    I had issues with iPad/iPhone access from external and tried a lot. Now I found my solution I like to share.
    I setup a IIS on Windows Server 2012 with ARR 2.5 and Android and Windows Phone could login but not iPad and iPhone.
    The IIS Log on the reverse proxy showed:
    2013-02-26 12:03:31 <IP> POST /webticket/webticketservice.svc X-ARR-CACHE-HIT=0&X-ARR-LOG-ID=1996c8d7-09d0-4310-8da4-a8dfb7940e28 443 - <ClientIP> Lync%202010/1.6+CFNetwork/609+Darwin/13.0.0 - 401 0 0 124
    2013-02-26 12:03:31 <IP> POST /webticket/webticketservice.svc X-ARR-CACHE-HIT=0 443 - <ClientIP> Lync%202010/1.6+CFNetwork/609+Darwin/13.0.0 - 502 3 12018 93
    First Request gets a 401 while anonymous. Second try would be with authentication but it never reached the internal front end server.
    After I installed a fix for ARR
    http://forums.iis.net/t/1195560.aspx/1?ARR+502+3+Bad+Gateway+0x80072ef2+2147954418+The+supplied+handle+is+the+wrong+type+for+the+requested+operation the Apple Devices could login.

    Hi,
    This resolved our problem too!! So happy after 2 weeks of messing around with just about every setting recommended from all types of forums and rebuilding our reverse proxy I was at a loose end. 
    Our environment is Lync 2013 Enterprise, Lync 2013 Edge, IIS as Reverse Proxy on Server 2012 using ARR 2.5
    We had Android and Windows clients working but no iOS devices at all. In the iOS log we were seeing 
    <h1>Server Error</h1></div><div id="content"> <div class="content-container"><fieldset> <h2>502 - Web server received an invalid response while acting as a gateway or proxy server.</h2> <h3>There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server.</h3> </fieldset></div></div></body></html>
    When the client was trying to retrieve from the webticketservice.svc
    2013-04-11 17:19:44.659 Lync[4970:6c61000] INFO TRANSPORT TransportUtilityFunctions.cpp/907:<ReceivedResponse>
    POST https://lyncwebext.contoso.com/webticket/webticketservice.svc
    Request Id: 0x72cfc18
    HttpHeader:Content-Length 1477
    HttpHeader:Content-Type text/html
    HttpHeader:Date Thu, 11 Apr 2013 16:22:25 GMT
    HttpHeader:Server Microsoft-IIS/8.0
    HttpHeader:StatusCode 502
    Installed the HotFix from here:-
    Hotfix for Microsoft Application Request Routing Version 2.5 for IIS7 (KB 2732764) (x64)
    Rebooted the Reverse Proxy and iOS clients worked straight away for both Lync 2010 and Lync 2013 on both iPhone 5 and iPad both. 
    I hope this helps others as I was losing the plot :-)
    Cheers
    Sam

  • Is it possible to prevent Windows Phone 8 users downloading apps from the Store unless thay have been "approved" for installation?

    We are currently migrating our mobile workforce from BB and iPad to Windows Phone 8 and will use Windows Intune to "manage" them. Is it possible to prevent these devices from being able to download / install apps that are NOT approved?
    We would publish "approved" apps on the Company Portal where necessary
    There will be no user-owned devices so there is no issue with rigid enforcement - we wish to stop games etc from being installed / propagated across the estate, which is a huge issue with the current devices
    Thanks

    This feature will be included with the Enterprise Feature pack (no I don't know when it will be released unfortunately)
    http://blogs.windows.com/windows_phone/b/windowsphone/archive/2013/07/10/making-windows-phone-an-even-better-choice-for-business.aspx?utm_source=twitterfeed&utm_medium=twitter

Maybe you are looking for