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…
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…
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…
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…
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);
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…
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…
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…
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[]…
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.…