Office Groups are the center of many team collaboration things. You can add guest to an Office Group and share the OneNote notebook and document library with the guests. Sometimes you want to share 1 folder or 1 document with an external user. Or you want to share a document with an anonymous link. You need some PowerShell […]
Tag Archives: Powershell
List all Office Groups with the owners and members using Powershell
One of the cool things on Office 365 are the Office Groups. By default everyone can create an Office Group using the web interface, the apps or by using Outlook. You can disable this behavious via some PowerShell scripts that you can find here. With those PowerShell commands you can do some other cool things […]
Use PowerShell to set item permissions in bulk
Batch convert Word documents to PDF
Modify list items with Powershell
When you have a list with a lot of items it can be hard when you have to update the items. You can use Powershell to do this. The following snippet shows you how you can do this: $SPAssignment = Start-SPAssignment $SPWeb = Get-SPWeb "https://servername/site" -AssignmentCollection $spAssignment $SPList = $SPWeb.Lists["verlof"] $spQuery = new-object Microsoft.SharePoint.SPQuery $camlQuery […]