Customizing Windows Phone Office hub?

Is it possible to modify the appearance of SharePoint lists/document libraries in Windows Phone Office Hub?

Hi ,
According to your description, my understanding is that you want to customize the appearance of SharePoint lists/document libraries in Windows Phone Office Hub.
Per my knowledge, there is no way to customize it. Office Hub includes SharePoint Workspace Mobile which used for connecting to SharePoint, and the feature is hard coded.
More information:
http://www.windowsphone.com/en-US/how-to/wp7/office/use-office-sharepoint-workspace-mobile
If you want to do custom development, I suggest you ask the Windows Phone Dev support for help.
http://dev.windows.com/en-us
Best Regards,
Wendy
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Wendy Li
TechNet Community Support

Similar Messages

  • App Hub sample visual studio fo Windows phone

    app Hub sample visual studio for Windows phone , i can not to view content page in item , how to view it
    sample please ?

    Hi,
    I'm not sure if we can directly convert the Android project to Windows Phone/Store app project, but we can share the code between deferent platforms, as the documentation says here:
    https://msdn.microsoft.com/en-us/library/dn771552.aspx?f=255&MSPPError=-2147217396#ShareHTML
    If the code is specific to Android platform, it's not possible to convert it to windows platform I think.
    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.

  • Why hub sample app windows phone comment characters ò è à cause error ?

    why hub sample app windows phone comment characters ò è à  cause error in
    global::System.Diagnostics.Debugger.Break(); ?

    Hi Orgest,
    Do you add these characters "ò è à" in the SampleData.json file? If so as far as I known the SampleData.json is initially a simple ASCII text file, so if we want to use these special characters, we need to do something with the encoding,
    for the detailed information, please try to refer to the following similar thread:
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/4d829e96-29dc-4029-911b-f32a40ac01a3/polish-characters-in-sampledatajson-file?forum=wpdevelop
    If I have misunderstood you, please try to post a simple reproduce project in here.
    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.

  • Azure Notification Hub Package Missing for Windows Phone 8.1

    The WindowsAzure.Messaging.Managed nuget package version 0.1.7.6 does not support Windows Phone 8.1. Is there a package available to support Azure Notification Hub to push notifications to Windows Phone 8.1?

    8.1 is not publically available.  You can check with the Azure folks and ask them when there will be an update
    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)

  • Windows Phone - Cannot bind custom user controll with listview item source property

    It is Windows Phone 8.1 (runtime)
    I have some problem of binding custom user controll with list of data. I'll make it simple as I can.
    My problem is that somehow if I use DataBind {Binding Something} inside my custom controll it will not work.
    I need to transfer binded data (string) to custom controll.
    It is strange that if I do not use DataBind, it will work normally. Eg MyCustomControllParameter = "some string" (in my example 'BindingTextValue' property)
    Does anyone Know how to bind custom user controll with inside ListView with DataTemplate.
    Assume this:
    XAML Test-Main page
    <Grid  Background="Black">        <ListView x:Name="TestList" Background="#FFEAEAEA">                    <ListView.ItemTemplate>                <DataTemplate>                    <Grid Background="#FF727272">                        <local:TextBoxS BindingTextValue="{Binding Tag, FallbackValue='aSource'}" local:TextBoxS>                    </Grid>                </DataTemplate>            </ListView.ItemTemplate>        </ListView>    </Grid>
    XAML Test-Main page c#
    public sealed partial class MainPage : Page    {        List<TTag> tags = new List<TTag>();        public MainPage()        {            this.InitializeComponent();            this.NavigationCacheMode = NavigationCacheMode.Required;        }        public class TTag        {            public string Tag { get; set; }        }        private void InitializeAppData()        {            TTag tag = new TTag() { Tag = "hello world" };            tags.Add(tag);            tags.Add(tag);            tags.Add(tag);            TestList.ItemsSource = tags;        }             protected override void OnNavigatedTo(NavigationEventArgs e)        {            InitializeAppData();        }           }
    User Control XAML:
      <UserControl    x:Class="CustomControllTest.TextBoxS"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:local="using:CustomControllTest"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    mc:Ignorable="d"    d:DesignHeight="300"    d:DesignWidth="400">      <Grid x:Name="LayoutRoot" Background="#FF4F4F4F"   >        <RichTextBlock x:Name="MyTestBlock">        </RichTextBlock>    </Grid></UserControl>
    User Control c#
    public TextBoxS()       {            this.InitializeComponent();            LayoutRoot.DataContext = this;        }        public static readonly DependencyProperty BindingTextValueProperty = DependencyProperty.Register(                                         "BindingTextValue",                                         typeof(string),                                         typeof(TextBoxS),                                         new PropertyMetadata(default(string)));        public string BindingTextValue        {            get            {                return GetValue(BindingTextValueProperty) as string;            }            set            {                SetValue(BindingTextValueProperty, value);                //This method adds some custom logic into RichTextBlock, pointed correctly                SetupBox(value);            }        }
    Thanks for helping ;)

    If you use a built-in control rather than your custom control, does binding work? You should verify that first.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Windows Phone Hub with more than 2 sections causes ArgumentException when collapsing any section

    Hi there,
    I'm working on a Universal app which is using a Hub control to display different sections.
    On startup, I want to hide some of the sections. Using a button, I want to toggle between the visible sections using a binding property on the Visibility property (Handled in the ViewModel). In my ViewModel I have 2 boolean properties that are bound to the
    corresponding sections and are converted to Visibility using a BooleanToVisibilityConverter
    <Hub>
    <HubSection>
    <DataTemplate>
    <Button Content="Test" Command="{Binding SwitchVisibilityCommand}"/>
    </DataTemplate>
    </HubSection>
    <HubSection x:Name="First" Header="Test1A" Visibility="{Binding ElementName=pageRoot,
    Path=DataContext.FirstVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
    <HubSection x:Name="Second" Header="Test1B" Visibility="{Binding ElementName=pageRoot,
    Path=DataContext.SecondVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
    <HubSection x:Name="Third" Header="Test2A" Visibility="{Binding ElementName=pageRoot,
    Path=DataContext.ThirdVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
    <HubSection x:Name="Fourth" Header="Test2B" Visibility="{Binding ElementName=pageRoot,
    Path=DataContext.FourthVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
    </Hub>
    public class MainPageViewModel : ViewModel, IMainPageViewModel
    private bool firstVisibleProperty;
    private bool secondVisibleProperty;
    public MainPageViewModel()
    FirstVisibleProperty = true;
    SecondVisibleProperty = false;
    SwitchVisibilityCommand = new DelegateCommand(ExecuteCommand);
    private void ExecuteCommand()
    FirstVisibleProperty = !FirstVisibleProperty;
    SecondVisibleProperty = !SecondVisibleProperty;
    public bool FirstVisibleProperty
    get { return firstVisibleProperty; }
    set
    firstVisibleProperty = value;
    OnPropertyChanged(() => FirstVisibleProperty);
    public bool SecondVisibleProperty
    get { return secondVisibleProperty; }
    set
    secondVisibleProperty = value;
    OnPropertyChanged(() => SecondVisibleProperty);
    public DelegateCommand SwitchVisibilityCommand { get; set; }
    This setup is working fine on Windows, but in Windows Phone I get an unhandled exception (ArgumentException with the message ´Value does not fall within the expected range.´). 
    When I reduce the amount of hubsections to two, one that is visible and one that is collapsed, everything is working fine again. When I use multiple sections that all use the the same visibility property no exception is thrown
    When I set both properties to true in the viewmodel, also no exception is thrown.
    I've also tried the following (Without succes):
    - change my boolean properties to Visibility properties
    - use different boolean properties for each of the sections
    I do not understand why this exception is thrown and the exception itself is to vague to give any useful information
    How can I resolve this error??

    I've uploaded my code to OneDrive. Use the following link to download the source:
    https://onedrive.live.com/?cid=9c0070abc26b0b55&id=9C0070ABC26B0B55%2173811

  • How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8

    Dear Sir/Madam,
    How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8.
    Actually my problem is that When i am using Custom  MessageBox in SelectionChangedEvent of LongListSelector,when i am click Open(Left Button) it's working fine and navigated correctly,But when i am Click the No(Right Button) then it stayed in same page
    but all that page is in stuckup i mean that page is not working and not doing any event.
    My C#.net Code
    private async void userPageLongListSelector_SelectionChanged(object sender, SelectionChangedEventArgs e)
    if (e.AddedItems.Count > 0)
    if (userPageLongListSelector.SelectedItem == null)
    return;
    if (dbTenMin == null)
    dbTenMin = new Database(ApplicationData.Current.LocalFolder, "tenMInDBSchema.db");
    await dbTenMin.OpenAsync();
    var res = (sender as LongListSelector).SelectedItem as _10Min._10MinClass.minUserPages;
    var resIndex = (sender as LongListSelector).ItemsSource.IndexOf(userPageLongListSelector.SelectedItem);
    string selectedPageName = res.userPages.ToString();
    string selectedPageDesignUser = res.pageDesignUser.ToString();
    int selectedIndex = resIndex;
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    string uidAndpwd = _10MinClass._10MinStaticClass.csUidAndPwd.ToString();
    _10MinClass._10MinStaticClass.csDataListPageDetails = selectedPageDataDetailsForSchema.ToString();
    _10MinClass._10MinStaticClass.csAllDataLists = offlineDataBaseDataListNam;
    _10MinClass._10MinStaticClass.csNotCreatedSchemaNameOfDBList = notCreatedDataLists;
    userPageLongListSelector.SelectedItem = null;
    if (dbTenMin != null)
    dbTenMin.Dispose();
    dbTenMin = null;
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    else
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    Same custom messagebox code working in Phone_BackKeyPress event i am writing the code in Right Button that e.OriginalSource.ToString(); then it is working fine.
    But It is not working in Selection Changed Event in LongListSelector control in Windows Phone 8.
    Please help me,as soon as possible.
    Thanks & Regards,
    SrinivaaS.

    What happens if you leave the implementation for LeftButton empty as well , does the page gets stuck in that case also, if you press left button?
    i.e.
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • This is for Verizon Customer Service: Is there an estimated date for the 8.1 Denim update for Windows Phones?

    Will Cyan be rolled out for the Icon, or should we expect to wait until Denim is supposed to be rolled out around October
    << Moderation discussion removed to comply with Verizon Wireless Terms of Service >>  This is a very specific question and Verizon Customer Service can't answer it if they don't have a chance to read the question.
    I spoke with Microsoft Customer service, and the agent specifically said MS already pushed Cyan to Verizon, and he, as a WP owner on Verizon, was also frustrated that the updates haven't been rolled out by VZW.
    So bottom line question: Skipping Cyan? If so, what is the Denim date?
    Message was edited by: Verizon Moderator

    Unfortunately the answer is unknown.  The majority of the Windows phone threads here are about this exact subject, and that says a lot about Verizon and their ability to communicate on a basic level.  You might get your update, you may not.  Verizon is in control and doesn't really care.

  • Windows Phone 8.1 Preview users still need to downgrade their OS in order to get Lumia Cyan

    Just an FYI for those of you who jumped on the Windows Phone Developer bandwagon and subscribed to the Windows Phone Developer Preview to get an early look at 8.1.  This is not such good news. 
    As is the case with all Microsoft Beta and Pre Release Software (Windows, Office, Windows Phone, etc.), there is a strong chance that the final cut of the software may not be compatible with the Beta or Pre Release versions of the application you are invited to download and sample.  Based on the article below and based on the AT&T customer experiences, this, in fact, is the case with the WP Developer Preview of 8.1.
    The Cyan 8.1 release provided to the carriers looks to see if you have DP 8.1 running and cancels the install if you do.  Microsoft has not said when a compatible version would be available through the Developer Program or with US carriers.
    There are directions on how to restore back to WP 8.0 if that is something you have to do.  Or, skip the Verizon update, keep DP 8.1 and wait for Microsoft to release an update.  Many are skeptical that Microsoft will do this; many are saying that the next Developer Preview will be WP 9.0.  Regardless - the only way you will be able to install the Verizon version of Cyan 8.1 will be on a supported WP device running WP 8.0.  There are many more details in the article below and the comments at the end of the article are filled with interesting information as well.
    http://www.wpcentral.com/preview-developers-still-need-downgrade-lumia-cyan

    primortal:  Interesting post on WPCentral this morning about 8.1 GDR 1 for Preview Customers.  Looks like those "in the program" may get GDR 1 before Verizon even gets around to releasing 8.1.
    I had good results with all of the 8.1 Preview Releases I downloaded.  While I did experience morning phone freeze and other slight annoying glitches, I did find that 100% of them were a result of using an APP called Clock Hub.  Killed the APP and my ICON ran like a champ.
    http://www.wpcentral.com/official-update-1-windows-phone-81-next-week-preview

  • 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. 

  • 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!

  • More Guru Winners for February 2015 in the Windows Phone category and many others!

    It's been a busy week that also saw the
    TECHNET WIKI SUMMIT 2015
    Then we had the results for
    February's TechNet Guru competition ALSO posted!
    http://blogs.technet.com/b/wikininjas/archive/2015/03/19/technet-guru-february-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 in the link above.
    Some articles only just missed out, so we may be returning to discuss those too, in future blogs.
     BizTalk Technical Guru - February 2015  
    Steef-Jan Wiggers
    BizTalk Server 2013 R2 Instrumenting a custom pipeline component with ETW
    Mandi Ohlinger: "Always a fan of helping our custom pipeline users. Great addition to this group."
    Sandro Pereira: "Images, format, descriptions, code and topic are excellent once again good work Steef-Jan."
    Vignesh Sukumar
    BizTalk BAM (Business Activity Monitoring)
    Sandro Pereira: "Great job on this article! Well explained and nice pictures, however the article format need to be improved and some proofreading is need"
    Mandi Ohlinger: "Welcome to the 'I heart BAM' fan club. Nice job on this topic. A MUST read for new-to-BAM users. "
    Steef-Jan Wiggers
    BizTalk Server 2013 R2 Instrumenting BAM Activity Tracking with ETW
    Sandro Pereira: "Images, format, descriptions, code and topic are excellent once again good work Steef-Jan."
    Mandi Ohlinger: "ETW for BAM Activities - LOVE it. Nice use of the Framework. "
     Forefront Identity Manager Technical Guru - February 2015  
    Wim Beck
    FIM2010: Filter objects on export
    PG: "Simple, targeted but nice article, nice layout. "
    Søren Granfeldt: "Nice. Would be perfect with a complete code sample."
     Microsoft Azure Technical Guru - February 2015  
    saramgsilva
    Azure Mobile Services: How to see the log files in server
    JH: "Log files are one of the most important things in a production environment. This article shows hows you can do that for the Azure Mobile Services in a nice and easy way."
    Alan Carlos: "Great article!"
    Ed Price: "Very useful topic! These are a great set of articles!"
    saramgsilva
    Azure Mobile Services: How to see the WebConfig file published
    Ed Price: "Great detail and fantastic use of images! I love all the in-line links!"
    JH: "Sometimes it is hard to tell when working in a multi-environment what configuration was published to the Server. The article shows short and easy how to do that for the Azure Mobile Services."
     Miscellaneous Technical Guru - February 2015  
    Arleta Wanat
    Retrieve all site mailboxes in your Office 365 tenant
    Durval Ramos: "This article has a well content, images and code that help to understand the solution. It has References and was Translated into more two languages. Good job!"
    Richard Mueller: "Good links. A great tutorial."
    Andy ONeill
    Silverlight: No Need to BringIntoView
    Durval Ramos: "A well formatted article is easier and more pleasant to read. This script is useful"
    Richard Mueller: "Good demonstration of a new feature."
    Chen V
    PowerShell : Enable Auto Reply for Shared Mail Box
    Durval Ramos: " A good solution originated of TechNet Forum. The script and images make it easy to understand and ensure you get the best interest to reader."
    Richard Mueller: "Good documentation of this feature."
     SharePoint 2010 / 2013 Technical Guru - February 2015  
    Geetanjali Arora
    SharePoint Online : Performing Batch Operations using REST API
    KB: "Very well explained article on a new and much awaited feature. Although Andrew Connell already explained this topic in several posts, this article still contains added value."
    Ed Price: "I love the History section. The formatting is amazing. And the References and See Also sections at the bottom are great icing on the cake. This is an important topic that's done incredibly well!"
    Matthew Yarlett
    Using the SpellCheck Webservice with the TinyMCE Richtext Editor and
    AngularJS in Office 365
    KB: "I read this article with growing interest, it contains a lot of added value. Very well and in-depth explanation. "
    Ed Price: "Great scenario! Good use of images, code, detail, and References! Could possibly use a greater breakdown and explanation of the code. This article just gets more and more interesting and valuable as you read it! Great job!"
    Arleta Wanat
    SharePoint Online: Turn on support for multiple content types
    in a list or library using Powershell
    KB: "Really nice, interesting and detailed article!"
    Ed Price: "The Content Types section helps explain this a lot! I also love the downloads at the end. What a fantastic resource!"
     Small Basic Technical Guru - February 2015  
    Nonki Takahashi
    Small Basic: Key Input
    Michiel Van Hoorn: "Great improvement."
    RZ: "Very nice explanation and examples of key input handling"
    Ed Price - MSFT
    Small Basic: The History of the Logo Turtle
    RZ: "Turtle (Logo) was the first programming language for many, including perhaps some of the Small Basic prorammers. Nice article explaining the history."
    Michiel Van Hoorn: "A nice background article and hopefull inspiration for those who want to start in robotics"
    Nonki Takahashi
    Small Basic: TechNet Wiki Article List
    Michiel Van Hoorn: "This is great! Perfect as a local cache of the articles. "
    RZ: "A good example"
     SQL BI and Power BI Technical Guru - February 2015  
    Sylvain PONTOREAU
    PowerBI API in .Net
    RB: "Great walkthrough. Looking forward for the WP8 version of the app ;)"
    PT: "Sylvain, very nice job with this. This is a timely topic about an emerging product that has great potential. This is a very good example of a well-written post on an interesting subject with enough information to be valuable to a
    solution developer. I will personally take time to explore the Power BI API and use your examples. "
     SQL Server General and Database Engine Technical Guru - February 2015  
    Ronen Ariely
    SQL Server Books Online
    AM: "Thank you for sharing this with us. It is quite informative and let us get familiar with BOL after the change from previous versins."
    Ed Price: "Nice! A very helpful introduction to Books Online! It also tells my technical writer friends that their hard work is appreciated! =^)"
    Durval Ramos
    How to Collect Events and Errors on SQL Server
    Ed Price: "Fantastic solution! A great resource that's amazingly well written with formatting, clear parameters, images, References, and a See Also section! And it even comes in Portuguese! Great article!"
    AM: "Thank you for sharing this with us. A good source to learn about our SQL Server instances. "
     System Center Technical Guru - February 2015  
    MarkusEliasson
    Troubleshoot ID 32008: DPM cannot
    protect this SharePoint farm...
    Ed Price: "An important topic that's very clear with great formatting and a good use of an image!"
    t.c.rich
    Managing Priorities of Client Polices and A/V Policies in SCCM
    Ed Price: "I love the descriptions, breakdown of sections, and code formatting! Great article!" 
    Mr X
    How to copy SMSTS.log when a Task Sequence fails in SCCM
    Ed Price: "A very helpful table and a good contribution to the community! Mr X again thinks of important content gaps to fill!"
     Transact-SQL Technical Guru - February 2015  
    Saeid Hasani
    T-SQL: How the Order of Elements in the ORDER BY Clause Implemented in the Output Result
    Durval Ramos: "Very well structured and with examples that clarify how a T-SQL statement can change the data output order."
    Richard Mueller: "Good use of Wiki guidelines and great examples."
    Ronen Ariely
    Free E-Books about SQL and Transact-SQL languages
    Richard Mueller: "An excellent collection and a great idea."
    Durval Ramos: "A good initiative. Very useful !!!"
    Ricardo Lacerda
    Declare Cursor (Transact-SQL) versus Window with Over - Running Totals
    - Accumulated Earnings
    Durval Ramos: "The "Window function" sample was well presented, but it was unclear how the chart was generated."
    Richard Mueller: "A new idea that can be very useful. Grammar needs work"
     Visual Basic Technical Guru - February 2015  
    Emiliano Musso
    Genetic algorithm to solve 2D Mazes in Visual Basic
    MR: "Great article! Love to see an application for AI in a simple game"
    Durval Ramos: "This article is well documented with images and your code clarifying important details. It also has References, a very useful video and your project available for download in "MSDN Code" !"
    Richard Mueller: "Incredible concept and code. Grammar needs work."
    Paul Ishak
    MultiHeadedTrackBar Control
    Durval Ramos: "Very interesting article, with methods and properties well documented. Your project was available in "MSDN Code" which facilitates the understanding of solution."
    Richard Mueller: "Amazing work. Extensive code but with lots of comments. Needs a TOC"
    tommytwotrain
    Using Trigonometry to draw graphic curves in VB.NET part 2.
    MR: "Great continuation. Love the usage of the code for circle text"
    Durval Ramos: "The article is interesting, but It's need to work better commenting about assemblies referenced on project and also structure your content into sections."
    Richard Mueller: "Good tutorial and example code demonstrating basic concepts. Avoid first person."
     Visual C# Technical Guru - February 2015  
    Magnus (MM8)
    C#: Enumerating collections that change
    Jaliya Udagedara: "Great article. Has a thorough and to the point explanation of problem and the solution with code samples. Loved it!"
    Carmelo La Monica: "Very useful and exhaustive about errors at runtime in these circumstances. Congratulations"
    Andy ONeill
    c#: Practical Poly
    Carmelo La Monica: "Fantastic artcle. Very detailed and exhaustive, congratulations ."
    Jaliya Udagedara: "Definitely worth reading this. Explains somewhat advance topic along with a fundamental concept of programming. "
     Wiki and Portals Technical Guru - February 2015  
    Durval Ramos
    Wiki: Microsoft Short URLs Personalized by SXP
    PG: "Nice idea, lots of potential to grow, really needs some more community attention."
    Richard Mueller: "An excellent idea. Good use of Wiki guidelines."
     Windows Phone and Windows Store Apps Technical Guru - February 2015  
    Carmelo La Monica
    Windows Phone 8: control Nokia Maps (Part 3)
    JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
    Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
    article!"
     Windows PowerShell Technical Guru - February 2015  
    Richard Mueller
    Document Your Active Directory Organization
    Alan Carlos: "Wow! Great article, congratulations!!! Very detailed!"
    Chen V: "Excellent Article - I liked return to top as well."
    Ed Price: "Wow! It's like a professional whitepaper! It's a valuable topic that's done with intricate detail! I love the images, diagrams, code blocks, and it ends very well with more resources and Wiki articles! The article just keeps
    digging deeper and deeper! Awesome job on this!"
    DexterPOSH
    PowerShell + REST API : Invoke-RestMethod Gotcha
    Chen V: "Good Article. TOC might have made this more rich! "
    Ed Price: "This is a good topic with some great content. It could benefit from sections and a TOC, as well as a References and See Also sections at the end. The inline links are helpful. Could "
    DexterPOSH
    PowerShell Trick : Search & highlight text in MS Word
    Ed Price: "This is a great solution, with some helpful Q&A in the comments!"
     Windows Presentation Foundation (WPF) Technical Guru - February 2015  
    Andy ONeill
    Lookless Controls
    KJ: "WPF can definitely be confusing when devs first encounter it. Like the way you break it down."
    Ed Price: "Wow! Fantastic explanations that are very clear and deep! The images and code bring it to life!"
    Andy ONeill
    Only One Parent
    KJ: "Same iwith this one, good 101 intro"
    Ed Price: "Another great tip! I love the detail here as well! Those snippets help a lot!"
    Andy ONeill
    Bind to Current Item of Collection
    KJ: "Feel like this topic has a lot of coverage out there, but it can't hurt to hammer on databinding yet one more time :) "
    Ed Price: "Fantastic topic with great execution! Although these could benefit from References and See Also wiki sections at the end, the Inline links help a lot!"
     Windows Server Technical Guru - February 2015  
    Mr X
    Ping for Beginners
    Mark Parris: "A good introduction with additional content."
    JM: "Great article idea and an excellent article that will be useful to many, thanks for your contribution."
    Philippe Levesque: "Good article that show a usefull utility for basic troubleshooting"
    Richard Mueller
    Active Directory: Get-ADFineGrainedPasswordPolicy Default and Extended Properties
    Mark Parris: "An Interesting insight on FGPP and their extended properties."
    JM: "This is a good piece of detailed information about this PowerShell cmdlet, thanks for sharing."
    Philippe Levesque: "Great article ! Illustrating some cmdlet's output when a user got assigned policy versus a user with the default domain policy could be a good idea."
    Richard Mueller
    Active Directory: Get-ADServiceAccount Default and Extended Properties
    Mark Parris: "A useful nugget of information."
    JM: "More very useful information about an AD cmdlet, thanks!"
    Philippe Levesque: "Good article !"
    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,
    THERE'S STILL TIME! :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 Carmelo!
     Windows Phone and Windows Store Apps Technical Guru - February 2015  
    Carmelo La Monica
    Windows Phone 8: control Nokia Maps (Part 3)
    JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
    Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
    article!"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Can I save acrobat cloud PDF files back to windows phone 8.1?

    I've backed up my (sandboxed) PDF files from Acrobat Reader on my Windows Phone 8.1 to Acrobat.com (Cloud).
    How Can I restore (save) them back to the phone?
    I understand I can view them in/from the cloud but how to get them back on the phone locally?
    -It sure would be nice to be able to copy them to the Office Hub as well.
    Seems Acrobat Reader (Windows Phone 8.1 app) allows download from OneDrive but not upload/ back-up to OneDrive, why?
    Why is the no option / context menu item allowing "save to phone" when tap/hold on cloud stored file, or while viewing the file itself.
    I see no option to download to phone.
    Seems the only work-around I can think of is to NOT use the Windows Phone Acrobat Reader App; but instead log into Acrobat.com (using the phones browser)
    and download the file(s) that way.

    Hi gtesuji,
    You may log on The Most Reliable Tool to Convert PDF to Word or Excel | Adobe ExportPDF and login with your Adobe id and password. Go to file section.
    Then you can download files back to phone memory.
    Regards,
    Ajlan Huda.

  • Windows 7 office 2013 acttivation

    Why must I activate my windows 7 microsoft office home and business 2013 every time I start up my computer and access a program (outlook) in office 2013??? I get the message "sorry we ran into a problem while trying to install the product key. If this
    keeps happening you should try repairing your office product. (system error: 0xc004d301)".  When I key the option "repair now" it works for a while and either comes back with the same message, or it shut down my program which upon restart
    come up with "activate Office".
    Robert Techo
    [email protected]

    Hi,
    Based on the description, you can't activate Office 2013 on your Windows 7 machine. Since we are not sure about the product key status or the local licensing policy, the best approach is the customer service.
    You can find the local customer service number from this link below:
    http://support2.microsoft.com/gp/customer-service-phone-numbers/en-us
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • SharePoint Site not accessing on Windows Phone

    We have a SharePoint 2010 site. We are planning to give mobile access the same site.
    We are able show this site for Andriod and iPhone users by doing some changes in compact.browser file at web application level.
    But the same site when I am accessing from the Windows Phone I am getting an error saying
    "we're having trouble in displaying this page".
    Is there any specific configurations for Windows Phone?
    Thanks,

    Make sure you have checked below pages incase you plan for mobile site
    http://technet.microsoft.com/en-us/library/gg610510%28v=office.15%29.aspx
    Check for supported authentications and devices
    Table: Mobile authentication support matrix for Office Hub
    SharePoint infrastructure
    Authentication mode
    Authentication provider
    Windows Phone 7.5 or later versions
    SharePoint on-premises
    NTLM
    Active Directory
    Supported
    SharePoint on-premises
    Basic authentication
    Active Directory
    Not supported
    SharePoint on-premises
    SAML
    WS-Federation 1.1 compatible Identity Provider
    Not supported
    SharePoint Online
    Forms-based authentication
    Org-ID
    Supported
    Mobile device operating system
    Operating system version
    Browser
    Smartphone device
    Slate or tablet device
    Windows Phone
    Windows Phone 7.5 or later versions
    Internet Explorer Mobile
    Supported
    Not applicable
    Windows
    Windows 7 or later versions
    Internet Explorer
    Not applicable
    Supported
    iOS
    5.0 or later versions
    Note:
    Video play experience requires iOS version 6.0 or later.
    Safari
    Supported
    Supported
    Important:
    Office Web Apps full functionality is supported on iPad versions 2 and 3 using iOS 6.0 or later versions. Limited viewing and editing functionality is also supported on iPad versions 1, 2, 3 using iOS version 5.1.
    Android
    4.0 or later versions
    Note:
    Video play experience requires Android version 4.1 or later.
    Android Browser
    Supported
    Supported
    Plan for views
    http://technet.microsoft.com/en-us/library/jj673030%28v=office.15%29.aspx
    Also follow below for optimization
    http://blog.mastykarz.nl/optimizing-sharepoint-2013-websites-mobile-devices/
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for