Tag: Powershell

Automated deployment for SharePoint Framework scripts available on Powershell gallery
Automated deployment for SharePoint Framework scripts available on Powershell gallery
Blog Posts

I published two scripts on Powershell gallery in order to help automated deployment of a SharePoint Framework solution: https://www.powershellgallery.com/packages/VSTS.DeploySPFxToO365CDN https://www.powershellgallery.com/packages/VSTS.DeploySPFxToAppCatalog The first script basically collects automatically the bundle publishing it on Office 365 CDN, while the second across the SharePoint ALM API is able to upload the package of the solution in the App Catalog.… READ MORE

Using site classification for SharePoint Sites
Using site classification for SharePoint Sites
Blog Posts

Site classification is a must-have when we talk about Governance, Compliance and also topics around GDPR. Beside 3rd party solutions focusing on site and content classification we have also some out of the box options and developer opportunities in Office 365 and SharePoint on-prem. Depending on if we are talking about classic SharePoint Site Collections or… READ MORE

Copy Documents between Site Collections in Office 365
Copy Documents between Site Collections in Office 365
Blog Posts

In this blog I am going to share the code to copy documents between site collections using CSOM on Office 365 SharePoint. The below code uses the recursive method to get all documents from source site collection and copy it to the target site collection. The script also preserves the modified and modified by details… READ MORE

Migration to SharePoint Online Using the PowerShell Migration Package “MigrationPackage”
Webinars

What’s new? PowerShell Migration Package Webinar Description: PowerShell Migration-You’ve decided on the cloud and Office 365. Now it’s time to upload your existing data into SharePoint online. You’re suffered by migrating using Drag and Drop, maintaining folder structures is nearly impossible and last but not least you would like to keep the original “Modified” date and… READ MORE

Use PowerShell to Manipulate the Values of a SharePoint Choice Field
Use PowerShell to Manipulate the Values of a SharePoint Choice Field
Blog Posts

Using PowerShell, we’re going to walk through handling a Choice field in a list. Specifically, this is a calendar list using the Category field. This may come in handy if you want to automate changing the values from another data source that BCS can’t connect to, or is too much work to get it to connect. I always prefer using SharePoint’s features, but sometimes we need to stretch it to make it work.