Posts

Bootstrap Installation for SharePoint Developers step by step

Image
                     how we can  download and install bootstrap in SPFX web parts?                      There are different ways we can download and use bootstrap.                     1) We can download the compiled version of CSS and JS required for bootstrap and we can use it.                https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css                https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js               Add this file in Assets folder of your solution and require n your tsx.                        2 ) you can also provi...

Delete all the previous year files from the Site collection using PowerShell

Image
 Sometimes it is possible that, when you are working with millions of files in your SharePoint site’s and you just don’t require the previous year files stored inside various document libraries and want to remove all the files from document libraries, then it is very time-consuming process when it comes to delete millions of files manually from different document libraries of the site collection. In this article, we will focus on how to remove all the previous year files present in any document library in the site collection using PowerShell. It is possible that PowerShell may take time to complete the execution of the script if the site contains large number of files inside its document libraries. We need to follow the below steps to create the script for the deletion of the previous year files.                       1.    First, we need to add the “dll” files in our GAC folder and add the path in our scrip...