Quick Authentication from PnP PowerShell to access SharePoint
Hello everyone, In this article we will see how to easily access SharePoint from PnP PowerShell by quick authentication (no need to provide username and password each time). This could help when...
View ArticlePowerShell script to change the content type for an existing document in...
During our O365 Migration, we had an issue with removing old content type at library level since the items are attached with the old content type, hence I wrote script to change the old content type...
View ArticlePowerShell script to create bulk sub sites in modern site and associate group...
In this article, let us see how to create bulk sites by accessing csv in modern site and associate default group to that site. Clear-host Write-Output -msg "Start : Module loading Process" $modulePath...
View ArticlePowerShell script to set user email in the access request settings on Modern...
In this article, let us see how to change or add the user to access request list The access request feature allows people to request access to content that they do not currently have permission to see....
View ArticlePowerShell script to change the People web part properties on a modern...
In this article, let us see how to change the site contact properties on a People web part for the multiple site since we can’t go and change it manually every time if we need to update the properties...
View ArticleHow to Delete the Modern Sites Using PowerShell in SharePoint Office 365
In this article, a small PowerShell Snippet to delete the SiteCollections from Office 365 is explained. There are two methods used in this script. Which is mandatory. Because, when we delete from the...
View ArticleHow to enable site classification in modern SharePoint site
The site classification option is not enabled by default in modern site, and you need to configure it using either CSOM or PowerShell script. Site classification is basically used to define the...
View ArticleHow to use PnP PowerShell in Windows 7 or Windows 8 machine
Hi, If you are not using windows 10 and still you want to use PnP PowerShell then you are at the right place. Follow the below steps and install whatever is necessary to make your PnP PowerShell work...
View ArticleHow to connect to SharePoint Online using PnP PowerShell and SharePoint...
Hello,Here we are going to connect SharePoint Online using PnP PowerShell and SharePoint Online Management Shell from your machine. If you have an issue while accessing PnP from your Windows 7 or 8...
View ArticleExecuteQuery” with “0” argument(s): “The remote server returned an error:...
The above said exception looks very strange. Because, I have installed the SP Online Management Shell and all the DLLs were properly installed. But, when I try to execute the below code, on the...
View ArticleHow To Get Inventory report Of Web parts added to SharePoint site page In...
While planning for the Migration or other purpose sometimes, we need to know the web parts added to the SharePoint Pages, This inventory is not available on any of the existing migration tools handy....
View ArticlePowerShell script to change Password for App pool and manage account in...
In development machine if we install the SharePoint on premise(2010 or 2013 SharePoint server) with User or our Id , due to policy if we change our password for installation ID, then We will face...
View ArticleHow to get the inventory of the existing SharePoint workflow using PowerShell
While planning for the Migration, we need to know the number of workflows associated with the Lists for planning the remediation and validation. This inventory is not available on any of the existing...
View ArticlePowershell script & Node module to Minify the JS files within directories &...
Recently faced a requirement to search all the JS files from a visual studio solution, minify each & overwrite at the same location.After some research I found a node component named as Uglify-JS...
View ArticleHow to Get the Tenant ID of Office 365
In this article, let us see how to get the Tenant ID of our Office 365 Tenant.Option 1 – Through the Screen1. Get from the Azure Active Directory Properties.2. Go to the Admin Portal and Click on the...
View ArticleSharePoint Office 365 - How to Get the Lists with Unique Permission – CSOM...
In this earlier article, We saw how to get the lists having unique permission using C#. In the same manner, let us see, how to get the unique permission lists using PowerShell.The script is straight...
View ArticleHow to Get the Size of the Document Without Version in SharePoint using...
In the earlier article, we saw, how to get the size using SSOM. But in recent times, customers are interested in CSOM rather than SSOM.The specific reason behind this could be, if the Content DB is not...
View ArticlePowerShell tip to Identify lists with InfoPath Forms associated in SharePoint...
To identify whether a list is associated with InfoPath Form or not, we have a Property called _ipfs_infopathenabled, which will have a value of True. If the list is not attached, the property itself...
View ArticleHow to Disable/Enable User Alerts in SharePoint Office 365 using CSOM PowerShell
Any list will be having a “alert me” functionality and the user they themselves can create alerts like, whenever a new document is created/updated an email/sms will be triggered for those users.During...
View ArticleHow to Update the Shared Data Source Information of a RDL RDLX files in...
In the earlier article, we saw how to read the Data Source and Update the Custom Data Sources. In this article, let us see how to update the Shared Data Source using PowerShell Script.The below script...
View Article