RoennesNet

RoennesNet

  • About
  • Blog
  • Contact
  • X
  • LinkedIn
  • Bulk update user profile properties in SharePoint Online

    27/01/2016
    SharePoint Development

    Since the new User Profile Batch Update API is not available on all tenants yet I have been using the “User Profile Bulk Property Updater” from the OfficeDevPnP samples at https://github.com/OfficeDev/PnP/tree/master/Samples/Core.BulkUserProfileUpdater This bulk updates user profile properties in SharePoint Online through the use of a CSV file. I am a big fan of Office 365…

  • KB3114503 gives you TypeError: Cannot read property ‘replace’ of undefined

    19/01/2016
    SharePoint Server, Technical Insights

    By installing the KB3114503 https://support.microsoft.com/en-us/kb/3114503 all the listview webparts on your SharePoint 2013 server displays this error repeatedly. “TypeError: Cannot read property ‘replace’ of undefined” With danish localization it looks like this: “TypeError: Værdien af egenskaben ‘replace’ kan ikke hentes: Objektet er null eller ikke defineret” Workaround Apparently a workaround is this quickfix https://www.reddit.com/r/sysadmin/comments/40tvqn/quickfix_patch_kb3114503_causes_sharepoint_to/ where…

  • Get SharePoint 2013 Content Types

    19/01/2016
    SharePoint Configuration, SharePoint Server, Tips and tricks

    All of the available out-of-the-box content types and their related columns in SharePoint Server 2013 are listed here in a post @JKevinParker http://www.jkevinparker.com/2014/02/sharepoint-2013-content-types-and.html You can also find the xml for most of the built in content types at your SharePoint server under the 15 hive folder TEMPLATE\FEATURES\ctypes\   Here is the PowerShell to fetch all content…

  • LDAP search filters and other useful queries

    14/01/2016
    Software development, Technical Insights

    Ran in to a project today where I had to revisit the old LDAP query. Here are some useful links: LDAP Query Basics https://technet.microsoft.com/en-us/library/aa996205%28EXCHG.65%29.aspx · Doing a Search Using Active Directory Users and Computers Doing a Search Using LDP Doing a Search Using LDIFDE Using LDAP Queries in ADModify Search Filter Syntaxhttp://msdn2.microsoft.com/en-us/library/aa746475.aspx Famous LDAP Filters…

  • Retrieve Credentials from Windows Credentials Store using C#

    11/01/2016
    Software development

    There is a Nuget library called CredentialManagement that wraps the Windows Credential Management API that supports both the old and the new style of UI http://nuget.org/packages/CredentialManagement/   works perfectly var cm = new Credential(); cm.Target = "mycredentialname"; if (!cm.Exists()) { Console.WriteLine("cm is null"); } cm.Load(); Console.WriteLine("Password: " + cm.Password); Console.WriteLine("Username: " + cm.Username);

  • Handling browser tiles and startscreen links

    16/08/2015
    Tips and tricks, Web development

      IE11 with Windows 8.1   refs: https://msdn.microsoft.com/en-us/library/dn455115%28v=vs.85%29.aspx Create live tiles for your websites in IE11   http://www.buildmypinnedsite.com/en Web application that generates your manifest for IE11   IOS devices   iOS design cheat sheet http://ivomynttinen.com/blog/the-ios-7-design-cheat-sheet/ more design guidelines here: http://iosdesign.ivomynttinen.com/ http://cubiq.org/add-to-home-screen Add To Homescreen is a free, open source javascript software. It is released under…

  • Fixing SharePoint Unexpected SPAudienceValidator Audience URI is not valid for context

    03/02/2015
    SharePoint Server, Technical Insights

    Following up on a change of default URL for a WebAppllication on SharePoint 2013, the site did not respond correctly. Finding the a Unexpected SPAudienceValidator Audience URI ‘[OLDURL]’ is not valid for context in the ULS led me to this blog post https://gavinmckay.wordpress.com/2014/11/28/fixing-sharepoint-2013-unexpected-spaudiencevalidator-audience-uri-is-not-valid-for-context/ Indeed a caching issue, in my case a flush of the DNS…

  • Mount-SPContentDatabase throws permission was denied on the object sysobjects

    17/10/2014
    SharePoint Server, Technical Insights

    When using the PowerShell command Mount-SPContentDatabase or adding content database through the Central Admin you will receive this error message: The SELECT permission was denied on the object ‘sysobjects’, database ‘mssqlsystemresource’, schema ‘sys’. if the SharePoint Admin account has the deny permissions checked. The easy fix was to open SQL Server Management Studio and modify the…

  • SharePoint content type collection cannot be modified exception in PowerShell

    28/03/2014
    SharePoint Configuration, SharePoint Server

    Got the error while scripting content type modifications with PowerShell and SharePoint 2010.     Error System.Management.Automation.MethodInvocationException: Exception calling “Update” with “1” argument(s): “The collection cannot be modified.” —> Microso ft.SharePoint.SPException: The collection cannot be modified.    at Microsoft.SharePoint.SPContentType.Update(Boolean updateChildren, Boolean ignoreSealedOrReadOnly, Boolean throwOnSealedOrReadOnly, IList`1 exceptions)    at Microsoft.SharePoint.SPContentType.Update(Boolean updateChildren)    at Update(Object , Object[]…

  • Download Service Pack 1 for the 2013 Office products

    26/02/2014
    SharePoint Server, Technical Insights

    Microsoft released the Service Pack 1 (SP1) for the 2013 set of Office products including Office 2013, SharePoint 2013 and Exchange Server 2013. Office 2013 customers will begin to get notifications of SP1 availability through Windows Update within the next 30 days. For Exchange Server 2013 and SharePoint 2013 you can use the links below.…

1 2 3 4
Next Page
RoennesNet

RoennesNet

  • X
  • LinkedIn