The following guide shows You how to get "User Manager" Properties from AD with a Nintex Workflow, without using webservice call or LDAP query. Requirements: SharePoint Farm with "User Profile Service Application" User in AD with Manager property Nintex Workflow In Nintex Workflow Designer, create a new Variable of type "Person or Group" Then … Continue reading Easy way to get “User Manager” from AD with Nintex Workflow
Category: SharePoint 2013
SharePoint 101 – Image Column in SharePoint list view
SharePoint list is a really powerfull tool, now and then we want it to do even more. Example: I want the list the have a picture column This column is should contain a link to a picture But I don't want the picture to be shown in full size as it will "destroys" the list … Continue reading SharePoint 101 – Image Column in SharePoint list view
SharePoint 101 Limited-Access User Permission Feature – PAIN!
Everybody ever working with SharePoint Permission know for a fact that is a real PAIN!! I recently experienced how pain-full it can be sometimes. Background: We have a solution with some nice SharePoint sites | some of the sites have broken inheritance down in the hierarki, and everything has been working great. Last week i received a … Continue reading SharePoint 101 Limited-Access User Permission Feature – PAIN!
SharePoint 101 Auto Create Documents based on SharePoint Designer Workflow
It's been a while since I've built something with SharePoint Designer Workflow, I kinda missed it. 🙂 An opportunity showed up, when i received a business request to automatically create documents based on a SharePoint list item. This post will describe the steps needed to make this work without custom development. Business requirements: A list … Continue reading SharePoint 101 Auto Create Documents based on SharePoint Designer Workflow
SharePoint Updates
Keep googling for this information https://technet.microsoft.com/en-us/library/mt715807(v=office.16).aspx SharePoint 2016 updates SharePoint 2013 updates SharePoint 2010 updates Latest Updates for SharePoint 2016 Package Name KB Number Release Date SharePoint Server 2016 SharePoint Server 2016 Multilingual User Interface (MUI) KB3118289 KB3118295 September 2016 SharePoint Server 2016 SharePoint Server 2016 Multilingual User Interface (MUI) KB3115437 KB3115441 August 2016 SharePoint … Continue reading SharePoint Updates
SharePoint 101 – WarmUp PowerShell
Need to warmup your SharePoint sites, try this small script #Get SharePoint PowerShell commands# asnp *sharepoint* #Query webapplications # $webapps = get-spwebapplication -IncludeCentralAdministration foreach ($app in $webapps) { $sites = get-spsite -webapplication $app.url -Limit ALL foreach ($site in $sites) { #write-host $site.Url; foreach ($web in $site.AllWebs) { #write-host $web.Url; $r = Invoke-WebRequest -URI $web.Url -UseDefaultCredentials … Continue reading SharePoint 101 – WarmUp PowerShell
SharePoint 101 – O365 search results “Filename”
As default SharePoint Search results displays the "Title" of a document instead of the "Filename". This behavior is sometimes really annoying and doesn't work for the end users. The easiest way to change this behavior is to change the "Search Schema" Navigate to your Central Administration or O365 Search Administration | "Manage Search Schema" Search … Continue reading SharePoint 101 – O365 search results “Filename”