• Workflow to concatenate multiple fields (en)

    Workflow to concatenate multiple fields (en)

    This will be a not a real blog post. I think it will be more like a storybook 🙂 So, how to concat to variables or fields? Just follow the pictures and use SharePoint Designer. Create a list with the Columns Title (default) and Description: Next open SharePoint Designer 2013 and create a 2013 Listworkflow for the just created list. In this Workflow I created different variables. I called the just “Var” and a number. Click under Action onto “Set Workflow Variable” and the shown in (1) type in the name and click on OK (2). Then I selected under Action

    Read More

  • Powershellscript to display all Checked Out Files (en)

    Powershellscript to display all Checked Out Files (en)

    With the following script you can display all your checked out files in your web. Just save the script below as e.g. “DisplayAllCheckedOutFiles.ps1” and execute it within the SharePoint Management Shell (open it as Administrator is always a good idea).   At the end of the script you can also specify if you want to save the results in a file. Here a brief overview over my output: Hope you like it and as always, don’t be afraIT to ask or comment. # enter your site URL $spWeb = Get-SPWeb “http://sp13” function GetCheckedItems($spWeb) { Write-Host “Scanning Site: $($spWeb.Url)” foreach ($list

    Read More