Use xlsm Format in SharePoint 2010?

I have a excel document with xlsm format (Excel Macro-Enabled Workbook, excel document containing VBA source code) and I wonder if I can upload it into SharePoint 2010 enterprise to display the powerpivot graph and of course use VBA code in Excel Service
in relation to SharePoint Business intelligence?

Hi,
according to a Microsoft Blog Post says the following:
One additional note about VBA.  Excel Services 2007 didn’t support loading *.xlsm files at
all because such files are meant to contain macros and files with macros would not load.  Now that the SharePoint 2010 version of
Excel Services knows how to ignore VBA macros, I am happy to say that also means *.xlsm files can now be loaded in Excel Services.
You will find the original blog post here: http://blogs.office.com/b/microsoft-excel/archive/2009/11/19/excel-services-in-sharepoint-2010-feature-support.aspx
Kind regards
Stefan
http://www.n8d.at/blog
Follow me on Twitter: StFBauer |
n8design
Microsoft Community Contributor 2011 / 2012
MCTS - SharePoint / WSS Configuration and Development

Similar Messages

  • Error while creating folder named "bin" using explorer view in sharepoint 2010

    I am getting error when I create a folder in a library named "bin" using explorer view in sharepoint 2010.
    When I create folders with other names I don't get any errors.
     Please suggest.

    Hi,
    According to your description, my understanding is that you got an
    error when you create a folder named “bin” in a SharePoint library with explorer view.
    There are any Microsoft.NET Framework assemblies that have controls or parts that the SharePoint site uses, which are stored in the bin folder. You can remove “bin”  from hidden segments, then you can create a folder named “bin”
    in the SharePoint library with explorer view.
       1.Opened IIS Manager and selected Server name -> Request Filtering -> Hidden Segments tab -> Removed "bin" from there:
       2.Perform IISRESET:
    Thanks,
    Dean Wang

  • How to change the date format of Sharepoint 2010 to dd MMM yyyy

    Hi,
    I am looking to change the datetime format with in the modified column from mm/dd/yy to dd MMM yyyy. I dont want to create calculated field with dd MMM yyyy format. I want the actual modified column value to be represented as dd MMM yyyy format.
    Thanks for your help in advance.
    regards
    Kalyan

    Please ask your question in the SharePoint 2010 forum and not in this pre-SharePoint 2010 forum.
    SharePoint 2010 - General Questions and Answers
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010general/threads
    SharePoint 2010 - Setup, Upgrade,Administration and Operation
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/threads
    SharePoint 2010 - Using SharePoint Designer, Infopath, and other customization
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010customization/threads
    SharePoint 2010 - Using Visual Studio with SharePoint and other programming
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/threads
    Dirk Van den Berghe

  • Error while connecting to external SQL table using BCS identity in SharePoint 2010

    Hi all,
    I am working on SharePoint Foundation 2010. I have a stand alone setup. Now I am trying to connect to a SQL table in another server. I have used SharePoint Designer to connect using BCS. I have selected "BCS Identity" for authenticating with SQL
    in the external content type. then I created a list with this external content type.
    I get the following error upon opening the external list.
    Login failed for user 'INYKGW\sp_farm'.
    I am confused. how do I solve this error.
    any help is greatly appreciated.
    Thanks.

    Hi letShare ,
    Whether the  account 'INYKGW\sp_farm' is current user account or a service managed account?
    Could you  please  provide detail error message of ULS log  to determine the exact cause of the error.
    For SharePoint 2010, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Also please have a look at  the blog :
    http://www.wonderlaura.com/Lists/Posts/Post.aspx?ID=82
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Change Master page of a site using ECMA Script in sharepoint 2010

    Hi All,
    I'm working on SharePoint 2010.
    I have a requirement where in I need to create a site and apply a particular master page to the newly created site using
    ECMA Script.
    The site gets created but while applying the master page it gives me an error stating the method 'set_masterUrl' is not defined.
    Here is my code:
    $(document).ready(function () {
    ExecuteOrDelayUntilScriptLoaded(createSite, "sp.js"); //This is used to ensure until sp.js is loaded, createSite will not be executed.
    function createSite() {
    var context = SP.ClientContext.get_current();
    var collWeb = context.get_web().get_webs();
    var webCreationInfo = new SP.WebCreationInformation();
    webCreationInfo.set_title('TestSite');
    webCreationInfo.set_description('Description of new Web site...');
    webCreationInfo.set_language(1033);
    webCreationInfo.set_webTemplate('STS#0');
    webCreationInfo.set_url('TestSite');
    webCreationInfo.set_useSamePermissionsAsParentSite(false);
    var oNewWebsite = collWeb.add(webCreationInfo);
    context.load(oNewWebsite);
    context.executeQueryAsync(Onsuccess, onfail);
    function Onsuccess() {
    dummy(context, oNewWebsite);
    function onfail(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    function dummy(context,oNewWebsite)
    var strMasterPageUrl = '/_catalogs/masterpage/Test.master';
    oNewWebsite.set_masterUrl(strMasterPageUrl);
    oNewWebsite.set_customMasterUrl(strMasterPageUrl);
    oNewWebsite.update();
    context.executeQueryAsync(Onsuccess1, onfail1);
    function Onsuccess1() {
    alert("Done");
    function onfail1(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    Please help.
    Thanks,
    Sachin

    The issue is coming because the scope of context and oNewWebsite is not available in your success method. Try to modify the code as below and see if that helps.
    $(document).ready(function () {
    ExecuteOrDelayUntilScriptLoaded(createSite, "sp.js"); //This is used to ensure until sp.js is loaded, createSite will not be executed.
    var context = null;
    var oNewWebsite = null;
    function createSite() {
    context = SP.ClientContext.get_current();
    var collWeb = context.get_web().get_webs();
    var webCreationInfo = new SP.WebCreationInformation();
    webCreationInfo.set_title('TestSite');
    webCreationInfo.set_description('Description of new Web site...');
    webCreationInfo.set_language(1033);
    webCreationInfo.set_webTemplate('STS#0');
    webCreationInfo.set_url('TestSite');
    webCreationInfo.set_useSamePermissionsAsParentSite(false);
    oNewWebsite = collWeb.add(webCreationInfo);
    context.load(oNewWebsite);
    context.executeQueryAsync(Onsuccess, onfail);
    function Onsuccess() {
    dummy(context, oNewWebsite);
    function onfail(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    function dummy(context,oNewWebsite)
    var strMasterPageUrl = '/_catalogs/masterpage/Test.master';
    oNewWebsite.set_masterUrl(strMasterPageUrl);
    oNewWebsite.set_customMasterUrl(strMasterPageUrl);
    oNewWebsite.update();
    context.executeQueryAsync(Onsuccess1, onfail1);
    function Onsuccess1() {
    alert("Done");
    function onfail1(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    The other way is to use this.context and this.oNewWebsite. To see how you can modify your code have a look at the following link.
    http://msdn.microsoft.com/en-us/library/office/jj163201%28v=office.15%29.aspx
    Geetanjali Arora | My blogs |

  • Advanced Search using conditional & logical operators+ sharepoint 2010

    Hi Team,
    We have an requirement something like this. we have to search values from Custom SharePoint List using Conditional & Logical Operators in SharePoint 2010. how can i achieve this ? if some one has worked on something like this, can you please share the
    details to my email id ([email protected]
    Thanks in Advance.
    Cheers, San

    Hi Santhosh,
    If you have only one list, then you can use CAML query to perform search in that list. You can write code to generate dynamic CAML based on selection in the filter.
    If have to perform the search function on multiple list then you can use Search object model and create dynamic query and execute it using Search OM.
    http://msdn.microsoft.com/en-us/library/office/dn423226(v=office.15).aspx
    Best Regards,
    Brij K

  • Use of pages in SharePoint 2010

    We would like the user to click on a link on main Team Site that will navigate the user to a page. That page will display a lot of content and will have a Content Query Web part that in turn will retrieve many documents from different library. The objective
    is to have users look at some Fast Facts. We plan to create about 5 pages each having a CQWP and showing different Fast Facts content.
    Questions:
    1. Should we design a wiki page? We don't want users to enter comments, no discussions, no social.
    2. What are the alternatives? If not a page, what is another way to meet our objectives?
    Thanks so much!
    Mayank

    You should not use wiki page for this purpose. You should go with blank web part page available in team sites (site pages library).
    Check this link for reference:
    http://sharepointsolutions.com/sharepoint-help/blog/2012/08/blank-site-template-and-team-site-template-%E2%80%93-what%E2%80%99s-the-difference/
    If you have enabled publishing feature then you can have multiple options in Pages library.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • Issues using Project 2013 with SharePoint 2010

    I'm a SharePoint Admin and a few users have come to me with issues related to checking in Project 2013 files. The scenario they describe is this:
    Project 2013 file is saved and checked in to a document library
    User opens the file and selects edit from the dialog menu.
    The time the document is open varies, from a few minutes to over an hour
    User is logged in as [email protected]
    They can close the file, select check in, and update the file in the library
    Once they try to open the file again, they are given a message saying that the file is checked out to server\user and asks whether they want to view a read only copy
    Saving is disabled because it is read only
    If the user tries to close the file, they are given the option to check in the file
    Sometimes the file will check in and other times it will not.
    Has anyone run into issues like this before?

    Hi CjMOrr85,
    Second time when you open the project file, which option do you select. "Read-only" of "Check-out to Edit". If you are using "Check-out" option, you should not have any issues.
    Happy troubleshooting....
    Vikram Daruru - MSFT

  • How to change the date format in Sharepoint 2010 to dd MMM yyyy

    Hi,
    I am looking to change the datetime format with in the modified column from mm/dd/yy to dd MMM yyyy. I dont want to create calculated field with dd MMM yyyy format. I want the actual modified column value to be represented as dd MMM yyyy format.
    Thanks for your help in advance.
    regards
    Kalyan

    I'm not really sure what context you asking to change this for but to change your date time settings -
    Go into Site Settings and under 'Central Administration' there is a link to 'Regional Settings'. Click this and you specify the way dates and times are displayed.
    I have done this and mine displays as DD/MM/YYYY like you are asking.
    My locale is current set to English (United Kingdom) and sort order is general. Even if you're not in the United Kingdom, I can only see this way being your solution as US dates are always set as MM/DD/YYYY.
    http://sharepointythings.blogspot.co.uk

  • SharePoint 2010 TechNet Guru News: October Winners Announced

    All the votes are in! 
    And below are the results for the TechNet Guru Awards, October 2014 !!!!
    For a full list of winners,
    see the full blog post, as runners up had to be removed from this post to fit the forum max length restrictions.
     BizTalk Technical Guru - October 2014  
    Agustín Mántaras
    Visual Basic script to deal with BizTalk Suspended Messages
    Mandi Ohlinger: "A quick and easy way to handle suspended messages. I'm a fan!"
    Ed Price: "Great article! Thanks for including an MSDN Gallery link, a See Also section that links to the Wiki portal, and some great example snippets!"
    Sandro Pereira: "Nice script, in my opinion it will be best to write this in PowerShell script. Well written, well formatted (some minor improvements can be made)"
    Johns-305 [boatseller]
    BizTalk: EDI Features Not Just For HIPAA
    Mandi Ohlinger: "A great walkthrough including the screen shots. Nice addition to the Wiki. "
    Ed Price: "Good use of images and color in the code snippets!"
    Sandro Pereira: "Nice start be this article should be explained better. Article format can be improved."
    Steef-Jan Wiggers
    Securing BizTalk endpoints leveraging Sentinet API Management Part 3
    Sandro Pereira: "Another excellent article in this series on Sentinet API Management. Well written, well formatted with nice pictures, great article and I love the topic."
    Ed Price: "Fantastic depth on this article!" 
     Forefront Identity Manager Technical Guru - October 2014  
    Wim Beck
    Event Driven Scheduling of Forefront Identity Manager (FIM) using a Windows Service
    Ed Price: "Fantastic job on formatting, the code, and all the explanations! The TOC and References are a nice touch!"
    PG: "Nice innovative solution, that is a nice add-on to existing solutions. " 
     Microsoft Azure Technical Guru - October 2014  
    Chervine
    Creating and Querying Microsoft Azure DocumentDB
    JH: "DocumentDB is one of my favorite new services on Azure. It's cool to see that someone seems to be excited as I am. Hope that this article is just the beginning of a whole series about Azure DocumentDB."
    Ed Price: "Great use of images and code snippets. Good conclusion! Great topic!"
    Chilbeto
    Publishing Multiple Azure Environments
    TN: "Great "
    JH: "This topic is normally forgotten when talking about Cloud development. I had a hard time to find an appropriate mechanism myself. This article provides one of the better ways how you can deploy multiple environments to Azure."
    Ed Price: "Great overview article. Good diagram at the top! Could benefit from a TOC and References. Good job on the conclusion!"
    saramgsilva
    Microsoft's Windows AppStudio: Add Support For Push Notification
    Ed Price: "Great introduction and incredibly thorough. Great job!"
    JH: "A new article about AppStudio focusing on push notifications. Push notifications in my opinion, when done right, makes an app alive. Would love to see a complete example with all features mentioned in the related articles published
    on GitHub." 
     Microsoft Visio Technical Guru - October 2014  
    Mr X
    Unattended installation of Visio 2013
    Ed Price: "Great job, Mr X! Good use of images!"
    AH: "It gives good instructions with the help of the pictures but its still missing detailed information if some user needs it. Need to provide a wiki/msdn references that are available something like http://technet.microsoft.com/en-us/library/cc179097.aspx.
    Overall decent article"
     Miscellaneous Technical Guru - October 2014  
    Brian Nadjiwon
    How to Create and Use Classes in PowerShell
    Richard Mueller: "Very interesting concepts. It would help to name the objects something like "Jim" rather than "Person", for example. There should be a See Also section, and more links to references."
    Ed Price: "Great topic and explanations of the classes!"
    Andy ONeill
    Visual Studio: Snippetty Tip
    Richard Mueller: "Great idea with some good advise."
    Ed Price: "Great explanations of the code snippets! Fun topic! As is mentioned in the comments and in the article, many people don't know this is possible!"
    saramgsilva
    How to create a Virtual Machine for run Windows 10 Technical Preview
    Ed Price: "Fantastic topic! Good use of images!"
    Richard Mueller: "Good images and a good step by step explanation. Needs links to references and other Wiki articles (See Also). We should try not to use first person."
     SharePoint 2010 / 2013 Technical Guru - October 2014  
    Geetanjali Arora
    SharePoint Online : An Introduction to Office Delve
    TN: "Great wrap-up about Delve"
    Ed Price: "Amazing depth and a great overview to a new topic! Great job on the images and details!"
    GO: "woohooo; a DELVE article. Great work."
    Margriet Bruggeman: "A new topic explained well, I was actually looking for this info!"
    Jinchun Chen: "Great."
    Steven Andrews
    Building a list specific search with JavaScript
    TN: "Great tip for mid-dev"
    Ed Price: "Great job on the descriptions, formatting, images, and See Also section! Check out the great comment from Dan at the bottom of the article!"
    GO: "Nice work Steven. It's definitely a great article.!"
    Margriet Bruggeman: "Great! easy to use solution for a request that is made often"
    Jinchun Chen: "Nice work"
    Dan Christian
    No-code solution to lookup previous item in a list
    Ed Price: "Effective images and helpful video and See Also help round out this great article!"
    GO: "Thanks Dan and as USUAL an usefull article."
    Jinchun Chen: "Nice. If InfoPath Form is accepted, we can use InfoPath Form to achive the goal as well."
    Margriet Bruggeman: "I can tell that effort is taken to explain the idea well"
     Small Basic Technical Guru - October 2014  
    Nonki Takahashi
    Small Basic: Rotation Centers for Shapes of Triangle and Line
    RZ: "Excellent article. This is a must read if you want to make an object move. You need to understand the coordinates and the rotation center."
    Ed Price: "Great use of images!"
    Nonki Takahashi
    Small Basic Known Issue: 26992 -
    GraphicsWindow.GetPixel(X, Y) Doesn’t Work Properly If X Or Y Has after the Decimal Point in Remote
    Ed Price: "Good recommended workaround!"
    RZ: "Yeah, another bug in Small Basic that might get you and need to be fixed :)"
    Nonki Takahashi
    Small Basic: International Resources
    Ed Price: "Oh, yeah. This one is so amazing! Thank you for making this and organizing the resources so well!"
     SQL BI and Power BI Technical Guru - October 2014  
    Visakh16
    Random SSRS Musings 1 : Rowset Concatenation Using Native SSRS Expressions
    MR: "Interesting example of LookupSet function usage"
    RB: "merging columns on a single line with an interesting solution"
    Jinchun Chen: "Good workaround we are generally using."
    Ed Price: "Great descriptions and use of images!"
    Jan D'Hondt
    Dates in Excel files rendered from reports are displayed as plain numbers
    Ed Price: "Great job laying out the sections. The images help convey a lot!"
    MR: "Very short tip that could be useful because of different behavior on iPad and Windows"
    RB: "interesting work-around."
    Anushka Weerakkodyge
    Integrating Power View with SharePoint Server 2010/2013 - Multidimensional Mode
    RB: "nice walkthrough"
    Ed Price: "Great depth in the procedure steps! It's similar to another article (see comment), but it's still a good addition. Good use of images!"
    MR: "This article explains how to install Power View on SharePoint but do not explain that Reporting Services is the tool required for Power View to work - the initial setup is required only whether SSRS has not been installed before.
    Otherwise, it has to be upgraded and then the shortcut can work."
     SQL Server General and Database Engine Technical Guru - October 2014  
    Shanky
    In depth Look at What can Cause Index to be Still Fragmented After Rebuild
    AM: "Well covered."
    Ed Price: "Good job on the explanations, Conclusion, and See Also section!"
    Ronen Ariely
    Representing list of values using a single value
    Ed Price: "Great breakdown of sections! Good formatting on the sections and code snippets! Great interactions in the comments!"
    AM: " Interesting options and walk through."
    Visakh16
    Generate Scripts for Stored Procedures Without Dynamic SQL in SSMS
    AM: "Nice tip for better use of SSMS."
    Ed Price: "Great breakdown of the problem and solution. As Saeid wrote in the comments, "Clear article which shows handy solution!" Good job!"
     System Center Technical Guru - October 2014  
    Alan do Nascimento Carlos
    ALM and IT Operations - Management 360 with System Center Operations Manager
    in 06 Steps
    Ed Price: "Lots of images. Great job breaking up the steps! Could benefit from a TOC and References. Great article!"
    GO: "Thanks for the only article. great btw. :-)"
     Transact-SQL Technical Guru - October 2014  
    Visakh16
    Behavioral Difference of IIf Function in T-SQL Compared To SSRS
    Richard Mueller: "Nicely done with code examples. The "See Also" section should only link to Wiki articles."
    GO: "Wonderfull article thank you!"
    Jinchun Chen: "Interesting comparison "
    Ed Price: "Good topic. Very clean and clear. Great article!"
    JS: "Good writeup, though I would bring the comparison with the table to the top and reference the samples from there."
    Ronen Ariely
    INSTEAD OF Triggers
    Ed Price: "Good depth here. Great explanations of the code! Great job interacting in the comments and improving the article!"
    JS: "Use object qualifiers (schema name to make sure that the right objects will be picked, e.g. dbo.) Outline ab bot more the things what not to do in production! Be aware that although people read this, they tend to use it anyway. If
    triggers are enabled, they are executed once for each batch They are executed each statement not batch, miswording here."
    Richard Mueller: "Good article. The "See Also" should only include Wiki articles. Some of the "Resources" could be moved to "See Also". Grammar needs work."
    GO: "Thanks" 
    Praveen Rayan D'sa
    Find the Database where user defined object located and where it is being referred.
    GO: "This article deserves absolutely a medal THANKS!"
    Jinchun Chen: ""
    Richard Mueller: "Good topic. Grammar needs work. "Caution" states undocumented stored procedure is safe for production, but later states it is not."
    Ed Price: "Great article. We should include the technology in the title. Good descriptions, and great References!"
    JS: "Although the outlined solution is interesting and shows the public the usage of the "new" system views finding the right dependencies, it is not recommended to describe the usage of undocumented features such as sp_msforeachdb
    as there are alternatives, especially in this scenario. You could generate a query using the sys.databases view and let it print out the database name along with the use statement. In addition to this and as the statement has to be run with a high privileged
    account as schema information is secured as well, it should be made safe to SQL injection. In many case in the statements there is just a concatentation of values used. You can easily inject code in here, Also make sure that names / object identifiers are
    quoted with [] in order to allow also special characters like spaces in the names"
     Visual Basic Technical Guru - October 2014  
    .paul.
    Image balloonTips
    Richard Mueller: "Lots of code. Great idea. The "See Also" section should only include links to Wiki articles."
    Ed Price: "Great solution. Good explanations!" 
    .paul.
    Image Arrow Pointers
    Richard Mueller: "Interesting idea. Need more links. Don't use first person." 
    Ed Price: "Creative solution! It would be good to break up the code more, to explain it. Great article!"
    Paul Ishak
    Visual Basic Graphics Frame Class (Easily Converted to C#)
    Ed Price: "Good solution! Could benefit from more explanations of what the code is doing."
    Richard Mueller: "Don't use first person. Could use more description, explanation, and links."
     Visual C# Technical Guru - October 2014  
    Chervine
    Using XML Serialization with C# and SQL Server
    Ed Price: "It goes on for quite a while! Great job breaking out all the code snippets and explaining them well! Could benefit from a References or See Also section. Great TOC!"
    Søren Granfeldt: "In these days of generic data, this serves as a good example of storing unstructured data"
    Margriet Bruggeman: "Through discussion of the topic"
    DB: "Interesting"
    Magnus (MM8)
    C#: Generic Type Parameters And Dynamic Types
    Søren Granfeldt: "Nice example of diving into generic code and extensibility"
    DB: "Good walkthrough of generics and reflection"
    Ed Price: "Important topic! Great descriptions."
    Margriet Bruggeman: "Good, I like the way the article covers various sides of the problem"
    saramgsilva
    File exporter for IEnumerable of T
    Ed Price: "Another great article from Sara! Great job on the TOC and code snippets!"
    Søren Granfeldt: "Great idea; could use a little more generic approach on the formatting of values"
    Margriet Bruggeman: "Nice example of applying generics" 
     Wiki and Portals Technical Guru - October 2014  
    Durval Ramos
    Summit: Principles of International TNWiki Summit
    Richard Mueller: "A great writeup and introduction to this fantastic idea. Well done."
    Ed Price: "Great depth and planning for this event!"
    GO: "This is one of the best Portals that I've ever seen! Thanks"
     Windows Phone and Windows Store Apps Technical Guru - October 2014  
    saramgsilva
    How to Integrate Cortana in the Menu App
    JH: "I got three words for you: I love Cortana! This article shows nicely how to integrate Cortana into your own app. Would love to see more."
    Ed Price: "That's what I'm talking about! Way to go for a "What's Next" topic and nail it! I expect this article to gain a lot of interest. Fantastic article!"
    Carmelo La Monica
    The class GeocodeQuery in Windows Phone 8.
    JH: "Lots of code examples about a feature some apps should be use more. Geocoding becomes more and more important, so this article fits perfectly into this."
    Ed Price: "This is an important class with a lot of possibilities. Great execution on this article! Could benefit from a References or Additional Resources section. Good job wrapping it up with the conclusion."
    saramgsilva
    Export To CSV for Windows Store apps
    JH: "Most people laugh when they hear about CSV export of data. A database would be a better place for the data of an app. In my opinion this is not always true (because CSV is small and can be used in different ways),
    so most apps should have the capability to export data into the CSV file format. This article shows how this can be done."
    Ed Price: "Another very important article. I love the Source link to the MSDN Gallery. Great job!"
     Windows Presentation Foundation (WPF) Technical Guru - October 2014  
    Andy ONeill
    WPF: Entity Framework MVVM Walk Through 1
    Ed Price: "Very well formatted, clear sections, and lots of depth and clear explanations! The TOC, code snippets, Summary, and Further Reading links all help round out this great article!"
    KJ: "awesome" 
    saramgsilva
    How to binding a ResourceDictionary to a Lisbox in apps based in XAML
    Ed Price: "Incredibly clear and fantastic topic! The TOC and Source link to the Gallery item help provide more value!"
    GO: "She did it again. Great article." 
    Shweta Lodha
    PopUps with Interactivity [Prism 5.0]
    KJ: "handy"
    Ed Price: "Good clarity and use of code snippets and images. Could benefit from a TOC and References/See Also. Great job!"
    GO: "Layout could be better, but still valualble article."
     Windows Server Technical Guru - October 2014  
    Richard Mueller
    Active Directory: Generalized-Time Attributes
    Mark Parris: "Very detailed article providing very good information."
    GO: "Top 1 AD article Thanks Richard."
    JM: "This is an excellent article, thanks for your contribution."
    Philippe Levesque: "Good article ! I really liked the note about the whenChanged"
    Darshana Jayathilake
    Some useful features with Windows Group policies
    JM: "This is an excellent article, but I recommend making the title more accurate by renaming it something like "How to configure Applocker using Group Policy" "
    GO: "I like the article; so great written"
    Mark Parris: "A good insight on some GPO settings and their capability."
    Philippe Levesque: "Good visual howto !"
    Mr X
    How to manage Windows Taskbar Items pinning using Group Policy
    Philippe Levesque: "Good subject well explained, already seen users that ask for that in the forum as it's new."
    JM: "This is a good article that would be much more useful if you specify the Windows versions to which the article applies."
    GO: "Merci, Mr X"
    Mark Parris: "Very useful, especially if you need to utilise this capability post deployment."
    -------------------------------- 8< --------------------------------
    A huge thank you to EVERYONE who contributed an article to October's competition.
    Hopefully we will see you ALL again in
    November 2014's listings?
    If you haven't contributed an article for this month, and you think you can create a more useful, clever and better presented 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 Geentanjali, Steven, and Dan!
     SharePoint 2010 / 2013 Technical Guru - October 2014  
    Geetanjali Arora
    SharePoint Online : An Introduction to Office Delve
    TN: "Great wrap-up about Delve"
    Ed Price: "Amazing depth and a great overview to a new topic! Great job on the images and details!"
    GO: "woohooo; a DELVE article. Great work."
    Margriet Bruggeman: "A new topic explained well, I was actually looking for this info!"
    Jinchun Chen: "Great."
    Steven Andrews
    Building a list specific search with JavaScript
    TN: "Great tip for mid-dev"
    Ed Price: "Great job on the descriptions, formatting, images, and See Also section! Check out the great comment from Dan at the bottom of the article!"
    GO: "Nice work Steven. It's definitely a great article.!"
    Margriet Bruggeman: "Great! easy to use solution for a request that is made often"
    Jinchun Chen: "Nice work"
    Dan Christian
    No-code solution to lookup previous item in a list
    Ed Price: "Effective images and helpful video and See Also help round out this great article!"
    GO: "Thanks Dan and as USUAL an usefull article."
    Jinchun Chen: "Nice. If InfoPath Form is accepted, we can use InfoPath Form to achive the goal as well."
    Margriet Bruggeman: "I can tell that effort is taken to explain the idea well"
    Also worth a mention were the other entries this month:
    SharePoint 2013: Showing Page Views within a SharePoint Page by
    Ram Prasad
    Jinchun Chen: "Creative solution. General solution is using customized web part."
    Margriet Bruggeman: "Very useful as this is the answer to a request that is made often"
    Ed Price: "Very important topic! And Erdem already made a Turkish version! Fantastic!" 
    SharePoint DeadLock high CPU\Memory usage caused by SQL server by
    Inderjeet Singh Jaggi
    Ed Price: "Good article. Could benefit from a TOC with Headers, and a References section. Important topic!"
    Margriet Bruggeman: "Useful if you haven't followed best practices and are stuck in this situation"
    CodePlex Corner Review: Instant List Filter by
    Steven Andrews
    Ed Price: "Great use of images! I like the Conclusion reference links!"
    Margriet Bruggeman: "Nice overview about a community edition, well written and presented"
    SharePoint 2013 Host Named Site Collection (HNSC) Overview by
    John Naguib
    Margriet Bruggeman: "A topic that always can use some explaining, I like it"
    Ed Price: "The table, images, and Reference are helpful! This article could benefit from Headers, a TOC, and a See Also section. Great job on the descriptions, and great details in the tables!" 
    SharePoint 2013 Capacity Management by
    John Naguib
    Jinchun Chen: "Nice article."
    Margriet Bruggeman: "I really like the thresholds, actions and tips section"
    Ed Price: "The tables help a lot! Great article!" 
    SharePoint 2013 and Kerberos by
    John Naguib
    TN: "Great artcle covering basis of Kerberos and SharePoint"
    Ed Price: "I love this topic! It could benefit from a TOC with Headers. Good details!"
    Margriet Bruggeman: "quite useful, I'll keep it for reference!" 
    Configuring Office Web Apps Server(OWA)with certificate by
    John Naguib
    Margriet Bruggeman: "Useful, but misses some depth"
    Ed Price: "Good to have more content on OWA!"
    Alternate Access Mapping(AAM) and SharePoint 2013 SSL web Applications by
    John Naguib
    Ed Price: "Another good topic!"
    Margriet Bruggeman: "Useful, but I'd like an article that covers more related aspects and is a bit more extensive"
    Create self-signed SSL certificates for SharePoint 2013 by
    John Naguib
    Margriet Bruggeman: "Loved it. I do this once in a while and tend to forget about it. I'm adding this to my bookmarks"
    Ed Price: "The image helps! Thanks!"
    Troubleshoot SharePoint Service Application \ Website issue from IIS by
    Inderjeet Singh Jaggi
    Jinchun Chen: "Really helpful. "
    Margriet Bruggeman: "Handy overview of some troubleshooting techniques, bit hasty done though"
    Ed Price: "Great topic! Could benefit from Headers and a TOC. As Dan put in the comments, "This article is definitely going to be helpful. We tend to either overlook or simply ignore the IIS settings and configurations which can sometimes
    be the root cause of the issue." Good job!"
    GO: "This article should be reviewed."
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • March 2015 TechNet Guru Awards! See who's boss in SharePoint 2010! 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 Muguresa, Melick, and Michaelle!
     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." 
    Also worth a mention were the other entries this month:
    JSOM List Operations in SharePoint Apps in a proper way (Provider Hosted
    and SharePoint Hosted) – Search (Part2) by
    Melick
    Margriet Bruggeman: "Good stuff - interesting approach for a JS API for JSOM"
    Ed Price: "Good breakdown of methods. Could benefit from more context and a See Also section at the end."
    SharePoint Online: How to change primary administrator for all site collections
    using Powershell by
    Arleta Wanat
    Margriet Bruggeman: "complete discussion of this problem"
    Ed Price: "An incredibly valuable topic!" 
    SharePoint 2013 : Displaying sum for calculated column in a list view using JSLink by
    Jaydeep Mungalpara
    Jinchun Chen: "Helpful"
    Margriet Bruggeman: "This is very useful, I've seen people ask for a solution like this"
    Ed Price: "Good descriptions and use of images. Great to have the code download!" 
    THE PROVIDED APP DIFFERS FROM ANOTHER APP WITH THE SAME VERSION
    AND PRODUCT ID in SharePoint 2013 App Development by
    Melick
    Margriet Bruggeman: "Excellent explanation of the thought process behind solving this problem"
    Ed Price: "Great topic and use of images! Could benefit from more contextual explanation and a See Also section."
    SharePoint Hosted Apps - Create Enterprise WIKI page using REST API by
    Kashif Pervaiz Butt
    Ed Price: "Good intro, reference, and code formatting! Could benefit breaking out the code more and explaining each piece. Good to have the Reference link!"
    Margriet Bruggeman: "Great if you're looking for this exact code, but doesn't do much to explain what is going on."
    SharePoint 2013: Deleting Orphaned SharePoint Databases by
    Matthew Yarlett
    Jinchun Chen: "It is useful in mose cases."
    Ed Price: "Great job on the code formatting and explaining each part! "
    Margriet Bruggeman: "Handy, but I'm missing some insights why this has happened" 
    SharePoint 2010 : Batch Updates on List Items using SharePoint Designer Workflow by
    Murugesa Pandian
    Hezequias Vasconcelos: "The SharePoint Workflow is one of the most sought by the community resources." 
    Margriet Bruggeman: "I guess I expected some more depth, the intro is really nice and then the solution is presented and over before you know it." 
    Ed Price: "Good descriptions and great use of images! Could benefit from Headers and a TOC. " 
    Configure a SharePoint server in non domain(Workgroup) environment by
    Inderjeet Singh Jaggi
    Margriet Bruggeman: "Didn't know that that was even possible, so cool! Although I feel this has limited usefulness." 
    Ed Price: "Good topic, but it could benefit from code formatting, Headers, a TOC, and a See Also section. The images help with clarity!"
    Access SQL server database of any version of SharePoint Standalone farm by
    Inderjeet Singh Jaggi
    Ed Price: "Good use of images, with clear steps and good to have the Reference. Would benefit from a Reference section."
    Margriet Bruggeman: "I feel there is a limited audience for this, and the complexity if the article is aslo limited. I do like the angle about sharepoint in a non-AD environment though, it's just not for me" 
    ADFS signout issue for SharePoint site in IE browser due to FedAuth Cookie by
    Inderjeet Singh Jaggi
    Margriet Bruggeman: "Very useful info, clear focus and article gets right to the point." 
    Ed Price: "Good write up. It's important to write articles in a Wiki perspective rather than a blog tone. Good description of the problem! Could benefit from code formatting." 
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • How to Hide fields on customized DispForm.aspx in SharePoint 2010

    Hi There,
    I have been facing with this issue since 4 weeks, let me explain my requirement first.
    I want to hide 2 fields on DispForm.aspx of a custom template.
    Following are the lines of code written for customizing DispForm.aspx  using ListFieldIterator SP control.
    <SharePoint:ListFieldIterator runat="server" ExcludeFields="PublishingStartDate">
                                            <CustomTemplate>
                                                <tr>
                                                    <td class="fp-ms-vb2">
                                                        <SharePoint:FormField ControlMode="Display" DisableInputFieldLabel="true"
    runat="server">
                                                    </td>
                                                </tr>
                                                <tr style="height:5px;"><td></td></tr>
                                            </CustomTemplate>
                                        </SharePoint:ListFieldIterator>
    those 2 fields are also generated using ListFieldIterator control. 
    Can someone suggest me how to hide specific fields.
    Thank you in advance,
    Vikram 
    vikram padigala

    To add more
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4c366cd9-dd84-440c-bdbc-30ee2c81876e/conditionally-hide-a-field-in-a-custom-form-using-sharepoint-designer
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/7aef4e74-63f1-4f02-96d7-21f9549fc924/how-to-filter-the-field-based-on-condition-using-conditional-formatting-in-sharepoint-designer-2010
     http://johnliu.net/blog/2011/2/23/spd-2010-conditional-formatting-to-hide-columns-based-on-a-r.html
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • SharePoint 2010, Visual Studio 2010, Packaging a solution - The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.

    Hi,
    I have a solution that used to contain one SharePoint 2010 project. The project is named along the following lines:
    <Company>.<Product>.SharePoint - let's call it Project1 for future reference. It contains a number of features which have been named according
    to their purpose, some are reasonably long and the paths fairly deep. As far as I am concerned we are using sensible namespaces and these reflect our company policy of "doing things properly".
    I first encountered the following error message when packaging the aforementioned SharePoint project into a wsp:
    "The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters."
    I went through a great deal of pain in trying to rename the project, shorten feature names and namespaces etc... until I got it working. I then went about gradually
    renaming everything until eventually I had what I started with, and it all worked. So I was none the wiser...not ideal, but I needed to get on and had tight delivery timelines.
    Recently we wanted to add another SharePoint project so that we could move some of our core functinality out into a separate SharePoint solution - e.g. custom workflow
    error logging. So we created another project in Visual Studio called:
    <Company>.<Product>.SharePoint.<Subsystem> - let's call it Project2 for future reference
    And this is when the error has come back and bitten me! The scenario is now as follows:
    1. project1 packages and deploys successfully with long feature names and deep paths.
    2. project2 does not package and has no features in it at all. The project2 name is 13 characters longer than project1
    I am convinced this is a bug with Visual Studio and/or the Package MSBuild target. Why? Let me explain my findings so far:
    1. By doing the following I can get project2 to package
    In Visual Studio 2010 show all files of project2, delete the obj, bin, pkg, pkgobj folders.
    Clean the solution
    Shut down Visual Studio 2010
    Open Visual Studio 2010
    Rebuild the solution
    Package the project2
    et voila the package is generated!
    This demonstrates that the package error message is in fact inaccurate and that it can create the package, it just needs a little help, since Visual Studio seems to
    no longer be hanging onto something.
    Clearly this is fine for a small time project, but try doing this in an environment where we use Continuous Integration, Unit Testing and automatic deployment of SharePoint
    solutions on a Build Server using automated builds.
    2. I have created another project3 which has a ludicrously long name, this packages fine and also has no features contained within it.
    3. I have looked at the length of the path under the pkg folder for project1 and it is large in comparison to the one that is generated for project2, that is when it
    does successfully package using the method outlined in 1. above. This is strange since project1 packages and project2 does not.
    4. If I attempt to add project2 to my command line build using MSBuild then it fails to package and when I then open up Visual Studio and attempt to package project2
    from the Visual Studio UI then it fails with the path too long error message, until I go through the steps outlined in 1. above to get it to package.
    5. DebugView shows nothing useful during the build and packaging of the project.
    6. The error seems to occur in
    CreateSharePointProjectService target called at line 365 of
    Microsoft.VisualStudio.SharePoint.targetsCurrently I am at a loss to work out why this is happening? My next task is to delete
    project2 completely and recreate it and introduce it into my Visual Studio solution.
    Microsoft, can you confirm whether this is a known issue and whether others have encountered this issue? Is it resolved in a hotfix?
    Anybody else, can you confirm whether you have come up with a solution to this issue? When I mean a solution I mean one that does not mean that I have to rename my namespaces,
    project etc... and is actually workable in a meaningful Visual Studio solution.

    Hi
    Yes, I thought I had fixed this my moving my solution from the usual documents  to
    c:\v2010\projectsOverflow\DetailedProjectTimeline
    This builds ok, but when I come to package I get the lovely error:
    Error 2 The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. C:\VS2010\ProjectsOverflow\DetailedProjectTimeline\VisualDetailedProjectTimelineWebPart\Features\Feature1\Feature1.feature VisualDetailedProjectTimeline
    Now, the error seems to be related to 
    Can anyone suggest what might be causing this. Probably some path in an XML file somewhere. Here is my prime suspect!
    <metaData>
    <type name="VisualDetailedProjectTimelineWebPart.VisualProjectTimelineWebPart.VisualProjectTimeline, $SharePoint.Project.AssemblyFullName$" />
    <importErrorMessage>$Resources:core,ImportErrorMessage;</importErrorMessage>
    </metaData>
    <data>
    <properties>
    <property name="Title" type="string">VisualProjectTimelineWebPart</property>
    <property name="Description" type="string">My Visual WebPart</property>
    </properties>
    </data>
    </webPart>
    </webParts>
    .... Unless I can solve this I will have to remove the project and recreate but with simple paths. Tho I will be none the wiser if I come across this again.
    Daniel

  • Authenticated RSS feeds viewer in Sharepoint 2010

    Hi All,
    I need to create an RSS feed viewer in the sharepoint page from an external site (Service Now) in which authentication is needed. I tried adding the OOTB RSS viewer webpart and found out that in our environment they are not allowing authenticated
    RSS feeds. So there is no point of asking for changing the authentication settings also.
    Could some one let me know if there is any workaround to include the authenticated RSS feeds viewer in the sharepoint environment. Please let me know if we can achieve the same through any CEWP?
    Thanks In Advance
    Jithin

    Hi,
    According to your post, my understanding is that you want to use RSS feeds in SharePoint 2010.
    Please check as the links below:
    http://norpoint.wordpress.com/2012/05/14/the-rss-webpart-does-not-support-authenticated-feeds/
    http://pravahaminfo.blogspot.in/2011/04/implement-rss-feeds-in-sharepoint.html
    We can also try to use Content Query Web Part to achieve it.
    Creating better RSS feeds with SharePoint 2010 Content Query Web Part
    http://blog.mastykarz.nl/creating-rss-feeds-sharepoint-2010-content-query-web-part/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Adobe X Bates Stamping and SharePoint 2010

    I'm trying to use Adobe X with SharePoint 2010 and Bates Stamp a set of documents stored in a SharePoint library and running into the following issues:
    1. It's necessary to manually check out the documents in order to "stamp" them.  Is this a known issue -- is there a way to have Adobe automatically check out the documents? I suspect not but thought I'd ask (would be a nice feature to add)
    2. Once checked out, Adobe can process the documents.  However, even though I tell it to "overwrite" the existing documents and to change the file name to the Bates Stamp sequence, Adobe creates new documents in the same library.  The result is that I end up with twice as many documents in the library.  Is there a fix for this so that Adobe actually overwrites the existing documents instead of creating copies?
    Thanks

    Hi, Renew.
    Since this question is not related to the CreatePDF service, but rather related to Acrobat, I've moved your question to the Acrobat forum > Creating, Editing and Exporting PDFs.
    Dave, Adobe

Maybe you are looking for

  • How can I create a new E-mail address for the Marketing Manager

    Hullo, how can I create a new E-mail address for the Marketing Manager (i.e. marketing professional role in SAP CRM) please. That when you go and create a new E-mail campaign you need to choose an E-mail form in addition to the E-mail address of the

  • Crystal reports group total

    Hi, I have sql query which gives output of accounts and balance. I have designed report to show chart of accounts and their balances. How can I take group total fields to show sum of each level of accounts. Level Account Header 3 Header 4 Header 5 He

  • We have a MBP with the NVIDIA known issue--purchased in August 2007. Is there any course of action for us?

    Hello! Our daughter's MBP was purchased in August 2007.  It died over the weekend and the diagnosis is this known issue. Apparently Apple is fixing these computers up to four years out from purchase.  We are a few months shy of five years. The comput

  • Problem in installation of Business Content for Solution Manager

    Hi all, I have a problem while trying to install the Business Content for Solution Manager. In detail, I cannot install/ see the Process chains. I am not much familiar with Business content installation, so maybe I missed and /or some step. Following

  • Flash Player fails to initialize

    I've read the FAQs and cannot find one that addresses my problem. I am running Firefox 28.0 on Windows XP. I made a screenshot of the error message. I get the same one every time I try to install.