Thread is Not Working in Windows Phone 8.1 Universal App

This code is working in WP8.0 When Coming to WP8.1 Thread class is Not Working
Thread SongThread = new Thread(() =>
List<QuizList> showsubjects = QuizManager.GetsubjectsForWP8(LinkInfo.ShowID.ToString()/*, false*/);
SongThread.Start();

The thread class has been abstracted away.To achieve the same effect, use a Task
Task.Run(()=>{List<QuizList> showsubjects = QuizManager.GetsubjectsForWP8(LinkInfo.ShowID.ToString()/*, false*/);}

Similar Messages

  • XmlResolver is not working in Windows Phone 8.1 Universal Apps

    XmlResolver is Working in WP8.0, But when coming to in WP8.1 Universal Apps it is not working.
    XmlReaderSettings settings2 = new XmlReaderSettings
    XmlResolver = new XmlXapResolver()
    Devi Prasad.P

    The XmlXapResolver is not supported in Windows Phone 8.1
    Universal Apps . Try use the XDocument class in Windows Phone 8.1 Universal Apps. 
    I sale myself ONLY half CNY!

  • How to use the code written in App.Xaml.cs in Windows Phone 8 in Windows Phone 8.1 Universal Apps

    i have a App.xaml.cs file in Windows Phone 8.0 , amd i want to use the code in that file to make work with App.xaml.cs file in Windows Phone 8.1 Universal Apps
    My Windows Phone 8 App.xaml.cs file is like as below
    namespace OnlineVideos
    public partial class App : Application
    #region Initialization
    public static dynamic group = default(dynamic);
    public static dynamic grouptelugu = default(dynamic);
    public static ShowList webinfo = default(ShowList);
    public static WebInformation webinfotable = new WebInformation();
    AppInitialize objCustomSetting;
    IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
    DispatcherTimer timer;
    IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
    public static bool AdStatus = false;
    public App()
    UnhandledException += Application_UnhandledException;
    if (System.Diagnostics.Debugger.IsAttached)
    Application.Current.Host.Settings.EnableFrameRateCounter = true;
    //RootFrame.UriMapper = Resources["UriMapper"] as UriMapper;
    AppSettings.NavigationID = false;
    objCustomSetting = new AppInitialize();
    timer = new DispatcherTimer();
    Constants.DownloadTimer = timer;
    InitializeComponent();
    InitializePhoneApplication();
    #endregion
    #region "Private Methods"
    void StartDownloadingShows()
    timer.Interval = TimeSpan.FromSeconds(10);
    timer.Tick += new EventHandler(timer_Tick);
    timer.Start();
    void timer_Tick(object sender, EventArgs e)
    try
    BackgroundWorker worker = new BackgroundWorker();
    worker.DoWork += new DoWorkEventHandler(StartBackgroundDownload);
    worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker_RunWorkerCompleted);
    worker.RunWorkerAsync();
    catch (Exception)
    void worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    if (AppSettings.StopTimer == "True")
    timer.Stop();
    AppSettings.StopTimer = "False";
    async void StartBackgroundDownload(object sender, DoWorkEventArgs e)
    switch (AppSettings.BackgroundAgentStatus)
    case SyncAgentStatus.DownloadFavourites:
    if (AppSettings.DownloadFavCompleted == false && AppSettings.SkyDriveLogin == true)
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    ReStoreFavourites reStoreFav = new ReStoreFavourites();
    await reStoreFav.RestorefavFolder(ResourceHelper.ProjectName);
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadFavourites;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadFavourites;
    break;
    case SyncAgentStatus.UploadFavourites:
    bool result = Task.Run(async () => await Storage.FavouriteFileExists("Favourites.xml")).Result;
    if (AppSettings.SkyDriveLogin == true && result)
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    UploadFavourites upLoad = new UploadFavourites();
    await upLoad.CreateFolderForFav(ResourceHelper.ProjectName);
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadParentalControlPreferences;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadParentalControlPreferences;
    break;
    case SyncAgentStatus.RestoreStory:
    if (AppSettings.DownloadStoryCompleted == false && AppSettings.SkyDriveLogin == true && (ResourceHelper.ProjectName == "Story Time" || ResourceHelper.ProjectName == "Vedic Library"))
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    RestoreStory restore = new RestoreStory();
    //if (ResourceHelper.ProjectName == "Story Time")
    await restore.RestoreFolder("StoryRecordings");
    //else
    // await restore.RestoreFolder("VedicRecordings");
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadStory;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadStory;
    break;
    case SyncAgentStatus.UploadStory:
    if (AppSettings.SkyDriveLogin == true && (ResourceHelper.ProjectName == "Story Time" || ResourceHelper.ProjectName == "Vedic Library"))
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    UploadStory st = new UploadStory();
    //if (ResourceHelper.ProjectName == "Story Time")
    await st.CreateFolder("StoryRecordings");
    //else
    // await st.CreateFolder("VedicRecordings");
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadFavourites;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadFavourites;
    break;
    default:
    ShowDownloader.StartBackgroundDownload(timer);
    break;
    #endregion
    #region "Application Events"
    private void pop_Opened_1(object sender, EventArgs e)
    DispatcherTimer timer1 = new DispatcherTimer();
    timer1.Interval = TimeSpan.FromSeconds(5);
    timer1.Tick += timer1_Tick;
    timer1.Start();
    void timer1_Tick(object sender, EventArgs e)
    (sender as DispatcherTimer).Stop();
    Border frameBorder = (Border)VisualTreeHelper.GetChild(Application.Current.RootVisual, 0);
    Popup Adc = frameBorder.FindName("pop") as Popup;
    Adc.IsOpen = false;
    private void Application_Launching(object sender, LaunchingEventArgs e)
    SQLite.SQLiteAsyncConnection conn = new SQLite.SQLiteAsyncConnection(Constants.DataBaseConnectionstringForSqlite);
    Constants.connection = conn;
    AppSettings.AppStatus = ApplicationStatus.Launching;
    AppSettings.StopTimer = "False";
    objCustomSetting.CheckElementSection();
    SyncButton.Login();
    if (AppSettings.IsNewVersion == true)
    AppSettings.RatingUserName = AppResources.RatingUserName;
    AppSettings.RatingPassword = AppResources.RatingPassword;
    AppSettings.ShowsRatingBlogUrl = AppResources.ShowsRatingBlogUrl;
    if (ResourceHelper.AppName == Apps.Online_Education.ToString() || ResourceHelper.AppName == Apps.DrivingTest.ToString())
    AppSettings.QuizRatingBlogUrl = AppResources.QuizRatingBlogUrl;
    AppSettings.LinksRatingBlogUrl = AppResources.LinksRatingBlogUrl;
    AppSettings.ShowsRatingBlogName = AppResources.ShowsRatingBlogName;
    AppSettings.LinksRatingBlogName = AppResources.LinksRatingBlogName;
    if (ResourceHelper.AppName == Apps.Online_Education.ToString() || ResourceHelper.AppName == Apps.DrivingTest.ToString())
    AppSettings.QuizLinksRatingBlogName = AppResources.QuizLinksRatingBlogName;
    Constants.UIThread = true;
    group=OnlineShow.GetTopRatedShows().Items;
    grouptelugu = OnlineShow.GetRecentlyAddedShows().Items;
    Constants.UIThread = false;
    StartDownloadingShows();
    private void Application_Activated(object sender, ActivatedEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Active;
    if (ResourceHelper.AppName == Apps.Kids_TV_Pro.ToString())
    AppSettings.ShowAdControl = false;
    private void Application_Deactivated(object sender, DeactivatedEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Deactive;
    AppState.RingtoneStatus = "TombStoned";
    private void Application_Closing(object sender, ClosingEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Closing;
    private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
    FlurryWP8SDK.Api.LogError("Error at Application_UnhandledException in App.xaml.cs", e.ExceptionObject.InnerException);
    if (System.Diagnostics.Debugger.IsAttached)
    System.Diagnostics.Debugger.Break();
    else
    Exceptions.SaveOrSendExceptions("Exception in Application_UnhandledException Method In App.xaml.cs file.", e.ExceptionObject);
    e.Handled = true;
    return;
    #endregion
    #region Phone application initialization
    public PhoneApplicationFrame RootFrame { get; private set; }
    // Avoid double-initialization
    private bool phoneApplicationInitialized = false;
    // Do not add any additional code to this method
    private void InitializePhoneApplication()
    if (phoneApplicationInitialized)
    return;
    // Create the frame but don't set it as RootVisual yet; this allows the splash
    // screen to remain active until the application is ready to render.
    RootFrame = new PhoneApplicationFrame();
    if (App.Current.Resources["AdVisible"] as string == "True")
    RootFrame.Style = App.Current.Resources["RootFrameStyle"] as Style;
    RootFrame.ApplyTemplate();
    RootFrame.Navigated += CompleteInitializePhoneApplication;
    // Handle navigation failures
    RootFrame.NavigationFailed += RootFrame_NavigationFailed;
    // Ensure we don't initialize again
    phoneApplicationInitialized = true;
    //NonLinearNavigationService.Instance.Initialize(RootFrame);
    private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
    if (System.Diagnostics.Debugger.IsAttached)
    System.Diagnostics.Debugger.Break();
    else
    Exceptions.SaveOrSendExceptions("Exception in RootFrame_NavigationFailed Method In App.xaml.cs file.", e.Exception);
    e.Handled = true;
    return;
    // Do not add any additional code to this method
    private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)
    // Set the root visual to allow the application to render
    if (RootVisual != RootFrame)
    RootVisual = RootFrame;
    // Remove this handler since it is no longer needed
    RootFrame.Navigated -= CompleteInitializePhoneApplication;
    #endregion
    Mohan Rajesh Komatlapalli

    Basically you are asking as how to port silverlight to Xaml (RT). Go one by one converting each API from silverlight to XAML, like IsolatedStorage isn't there in RT, so look for its alternative etc.
    See here the namespace/class mappings : Windows Phone Silverlight to Windows Runtime namespace and class mappings
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Activesync not working for Windows Phone with certificate

    We have a new Exchange Server 2013 setup and using activesync.  We have setup a policy to require simple password and to send an email to provision a device when it connects.  Activesync is setup to use self signed certificates,  this was
    tested first on the Ipad.  Certificate installed entered the settings and the device appeared in the quarantined devices list awaiting to be approved.  This was also done on the Iphone and worked. 
    When putting the same certificate on the windows phone device it errored with there is a problem with {as.domain-name.net} and does not appear in quarantined devices screen.
    I tested again with another Ipad and an android device and they work without an issue.  Tested with a Windows RT device and got the same issue.  If I look in the IIS log files I can see the windows device making a connection then when I presume
    to be the error 500 at the end of the line. 
    This is not a user issue as I can use the same user on the various devices.  The windows devices just do not want to connect.  We have looked at the certificate but if it works for apple and android devices why does it not work for windows? 
    Is there any additional security settings that need to be turned on or off for windows phones?  Is there something specific on the certificate what windows devices need that others ignore?

    I did inital think it might be a widows phone issue but there are no other settings for me to use.  I have also tested using a windows 8 surface and I get the same issue.
    I have raised the event log level on the exchange server to expert and I have seen 2 messages when I try to connect. 
    I get Event ID 1100:  Exhcnage ActiveSync device requests for your uses are being blocked.  This problme frequently occurs when HTTP OPTIONS method is not allowed.
    I know it is allowed as the test exchange connectivity worked and passed that test.
    The other error Event ID 1309 ASP.NET warning.  Part of the exception messge is DeviceTypeMissingOrInvalid
    I have come across a comment that says for certificates to work you need to use windows intune or SCCM which we don't have.  Do we know if this is true? 

  • 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

  • Browse button not working in Windows Phone while tyring to upload an image to Pictures library in Sharepoint 2013 online site .

    Hi,
    I am trying to upload an image to SharePoint 2013 online site's Pictures Library from the Windows phone. When I click on  Browse button, nothing happens. Although the same browse button in working in the chrome and allowing to select an image from the
    phone library.
    Please let me know if this is the known issue or any work around is available to overcome this.
    Regards,
    Saurabh M

    Hi,
    Although the mobile version of Internet Explorer is supported by SharePoint 2013, however, for Office 365 SharePoint Online 2013 which keeps updating all the times, there may
    be some compatibility issues during the process.
    As this issue is more relate to SharePoint Online, it would be more appropriate to open a thread in Office 365 forum, you will get more help and confirmed answers from there:
    http://community.office365.com/en-us/forums/default.aspx
    Thanks for your understanding.    
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • MSGestureHold not working in Windows Phone 8.1 webbrowser control

    Scroll down and try sample no. 1 on the following website:
    Unifying touch and mouse
    The hold gesture sample will work with Internet Explorer 11 in WP8.1 but not with the webbrowser control in an app in WP8.1. There seem to be a bug. It worked fine in WP8.0 webbrowser control.
    Please fix this problem!

    Sample 1 works correctly on the 2 devices (and Windows 8.1).
    I am not sure what could be causing your issue.  Perhaps you don't fully understand what Sample 1 does?
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Website payment and shopping cart buttons not working on Windows Phone browser

    A customer shopping on our site notified me that the "add to cart" and "view cart" buttons were taking him to the PayPal main site and not the shopping cart. I tried a Windows Phone at the Verizon store and found the same issue. I have tested the site on multiple Windows desktop browsers, on Android, Linux and iPad and have never seen this issue.  What is going on with IE on Windows Phone?

    I had this problem too, but I found a post burried on the web that said to add " p06- "  (without quotes) before the imap and smpt server names and that worked:
    p06-imap.mail.me.com
    p06-smtp.mail.me.com
    Everything stays checked, SSL for both, authentication and use same username and password checked.

  • Phone Update not working in windows phone 10 technical preview

    I recently upgraded my lumia 920 from windows 8.1 to windows 10. Now whenever I hit 'check for updates', it indefinitely stays there as if it's checking but it doesn't. I'm kinda worried that if any new windows 10 updates come, will I ever be able to update.
    Is there a way to fix this issue without rolling back to windows 8.1?

    I've got to bump up this issue. After several builds and all the updates, issue remains, and HP is silent on the forum as always. I've also posted another feedback post via Windows Feedback tool, and have posted new reply to the old post in the Windows Forum ( http://answers.microsoft.com/en-us/windows/forum/windows_tp-hardware/hp-hs2340-hspa-mobile-broadband-module-not-working/afd40168-bca2-4a72-a54f-8d70e15a71f5 ) Again, if there are any other users experiencing this issue with hs2340 and Windows 10 Technical Preview, please post both here and to the thread linked above (answers.microsoft.com website). If anyone had resolved it or found a newer driver than v.7.2.8.1 (for any Windows version) please post a link and/or workaround. Thank you in advance!Luka

  • ShareLinkTask is Not Working in Windows Phone 8.1

    ShareLinkTask is Working in WP8.0 But Not Working in WP8.1
    public void QuizPostAppLinkToSocialNetworks(ListBox listBox, MenuFlyoutItem selectedItem, string message)
    ListBoxItem selectedListBoxItem = listBox.ItemContainerGenerator.ContainerFromItem(selectedItem.DataContext) as ListBoxItem;
    ShareLinkTask shareLinkTask = new ShareLinkTask();
    shareLinkTask.Title = ResourceHelper.ProjectName + " App";
    string lnk = message;
    lnk += "'" + (selectedListBoxItem.Content as QuizList).Name + "', Get the app at \n";
    shareLinkTask.LinkUri = ResourceHelper.AppMarketplaceWebLink;
    shareLinkTask.Message = lnk;
    shareLinkTask.Show();
    Devi Prasad.P

    In Windows Phone ShareLinkTask is not Exist for that we are used DataTransferManager.
    Try this code it is helpful to you.
    public void QuizPostAppLinkToSocialNetworks(ListBox listBox, MenuFlyoutItem selectedItem, string message)
    DataTransferManager shareLinkTask = DataTransferManager.GetForCurrentView();
    shareLinkTask.DataRequested += delegate(DataTransferManager sender, DataRequestedEventArgs args) { shareLinkTask_DataRequested(sender, args, message,listBox,selectedItem); };
    void shareLinkTask_DataRequested(DataTransferManager sender, DataRequestedEventArgs args, string message,ListBox listBox, MenuFlyoutItem selectedItem)
    ListBoxItem selectedListBoxItem = listBox.ItemContainerGenerator.ContainerFromItem(selectedItem.DataContext) as ListBoxItem;
    string lnk = message;
    lnk += "'" + (selectedListBoxItem.Content as QuizList).Name + "', Get the app at \n";
    DataRequest request = args.Request;
    request.Data.Properties.Title = ResourceHelper.ProjectName + " App";
    request.Data.SetWebLink(ResourceHelper.AppMarketplaceWebLink);
    request.Data.Properties.Description = lnk;

  • Skype not working on Windows Phone 8.1 - Lumia 920

    Hi, I haven't used Skype since I installed the Windows Phone 8.1 developers preview. When I opened the Skype app today, it was like the narrator was on. It started reading the text on the screen. When I clicked on the Sign in button, it announced 'Not supported for screen reader; button' and had this pink box around the button like shown in the picture below. I tried reinstalling the app; restarting the phone; uninstalled the app, restarted the phone and then installed the app. I tried turning the narrator on and off too. But, nothing works. Any ideas on how to fix this?

    I can also not get Skype to work on my Nokia Lumia 920 with Cyan. I have merged the accounts and I can Log On on Skype for PC with all the merged accounts. When I Log On the Skype app for WP8.1 it almost at once crashes and the app are useless. Please help me to solve the problem? My phone runs in Danish!

  • Java thread not working in windows 7

    I have a Java app that runs just fine on Windows XP. However, on Windows 7 there is a problem related to a job being done via a Java thread.
    Background: The app spawns a separate job via a Java thread and continues on while the spawned job executes. In other words, 2 things happen at once.
    Problem: On Windows 7, when the app spawns the job, Windows sits and waits for the spawned job to complete before it continues on. In other words, 2 things DO NOT happen at once.
    It's as if Java threading does not work in Windows 7. Any input would be greatly appreciated. Thanks.

    l_sleven wrote:
    Thanks for the input, guys. From now on I'll be sure to include a SSCCE.
    I'm beginning to believe this is actually my ignorance of threading in SWT, and XP was more forgiving than 7.
    I would include a SSCCE, but of the 4 different ways I tried to get this to work I wouldn't know which to include since all failed to fix the problem.
    If you want to identify a link to a web page identifying 'best practices' for SWT threading, that would be great. Be aware though that there's a good chance I've already googled the page.
    A programmer smarter than me once said, "The road to best practices is a bumpy ride".[Concurrency in Swing|http://download.oracle.com/javase/tutorial/uiswing/concurrency/index.html]

  • Windows Phone 8.1 Universal: VS 2013 deploys app to device but does not delete data file in roamingfolder and roaming is not activated.

    I am using VS 2013 to develop a Windows Phone 8.1 Universal app.  When I deploy to the device (my phone), the old data file that I had stored in the roamingfolder previously continues to be used.  I have uninstalled the app after being deployed,
    I put code in the app to delete the files individually from the roamingfolder and used ClearAsync(). That worked until I deployed the app again and then the old files came back.  I have not associated these apps with the store yet so roaming should
    not be working. The desktop app does not have this problem, when I uninstall it the files are deleted.
    In the phone app properties debug tab, I have the Uninstall and the reinstall my package checked for all configurations.  I have looked everywhere I can think of for these old files: laptop c:, phone tempfolder, localfolder, etc. thinking VS is reinstalling
    them from somewhere when deploying the app but I cannot find them.  If I change the phone app to use the localfolder, the old files are not used.
    Is this just the way it is if I use the roamingfolder or is there a way to delete these old files?
    Any help would be greatly appreciated.  Thanks.

    Hi MV12,
    >>When I deploy to the device (my phone), the old data file that I had stored in the roamingfolder previously continues to be used
    Yes, it is designed to work like that, please refer to this document for details:
    #Accessing app data with the Windows Runtime (Windows Runtime apps)
    https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh464917.aspx#roaming_app_data
    Roaming data for an app is available in the cloud as long as it is accessed by the user from some device within the required time interval.
    If the user does not run an app for longer than this time interval, its roaming data is removed from the cloud.
    If a user uninstalls an app, its roaming data isn't automatically removed from the cloud, it's preserved. If the user reinstalls the app within the time interval, the roaming data is synchronized from the cloud. The current policy specifies
    that this time interval is 30 days. Location is available via the roamingFolder property.
    >>Is this just the way it is if I use the roamingfolder or is there a way to delete these old files?
    No, you will have to wait.
    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.

  • XmlXapResolver is Not Working With Windows Phone8.1

    "XmlXapResolver" is Working in wp8 but Not working in WP8.1 and added Name space "using System.Xml;"
    public static string GetAppAttribute(string attributeName)
    string attribute;
    try
    XmlReaderSettings settings2 = new XmlReaderSettings
    XmlResolver = new XmlXapResolver()
    XmlReaderSettings settings = settings2;
    using (XmlReader reader = XmlReader.Create("WMAppManifest.xml", settings))
    reader.ReadToDescendant("App");
    if (!reader.IsStartElement())
    throw new FormatException("WMAppManifest.xml is missing App");
    attribute = reader.GetAttribute(attributeName);
    Devi Prasad.P

    Hi Devi Prasad987,
    Based on your description, it seems that you are using the Windows Phone 8.1 Runtime app, the
    XmlXapResolver is supported in Windows Phone 8/8.1 Silverlight app, but it is not supported in Windows Phone 8.1 Runtime app. If you want
    to the read data from the xml file, I will recommand you use the XDocument class in Windows Phone 8.1 Runtime app. 
    Best Regards,
    Amy Peng
    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.

  • MFA not working on Windows Server 2012 R2

    Been using MFA since PF days.  Deployed it successfully many times but for some reason it's not working with Windows Auth, Terminal Services on a Win 2012 R2 DataCenter box?  The machine was successfully added to my domain PhoneFactor group, I
    can see and add the machine on the master MFA.  Services are running but when I remote in I go right through without MFA stopping me?  Any ideas?
    TIA

    6.3.0 has just been released and 2012 R2 is *still* not supported. What the hell?!?
    "Version 6.3.0 of the Azure Multi-Factor Authentication Server adds the
      following additional functionality:
    * Added one-way SMS functionality for AD FS, RADIUS and User Portal
    * Added .csv file import for OATH tokens
    * Added support to parse phone numbers in E.164 format during import
      From the directory
    * Fixed problem preventing slave servers from performing MFA if the
      master server was unavailable. This problem was found to exist in
      all 6.2.x builds. All customers running 6.2.x should upgrade to 6.3.
    * Fixed directory sync issue for recursive security groups
    * Added additional logging to AD FS adapter
    * Other minor bug fixes and security improvements
    Known Issues:
    * Windows Authentication for Terminal Services is still not supported for
      Windows Server 2012 R2"
    So they added a whole stack of other functionality, but still didn't get around to taking a look at this bug. I'm stunned. Is there any sort of timeline on fixing this, or is 2012 R2 just going to remain unsupported forever?

Maybe you are looking for