Copy Permissions from One SharePoint Site to Another using PowerShell

Requirement: Copy permissions from one site to another in SharePoint! Solution: If you want to copy one SharePoint site to another site, there are no OOTB ways! However, You can use PowerShell to copy permissions between sites. Here is my PowerShell script to copy site permissions: Copy Permissions from one site to…

Read more

SharePoint Online: Add “Yes/No” Check Box Column to List using PowerShell

Requirement: Add the “Yes/No (Check box)” column to the SharePoint Online list using PowerShell. How to Create Yes/No Check box column in SharePoint Online List? The Yes/No column in SharePoint represents the Boolean data type, and it stores either a Yes or No value based on the field’s checked or unchecked state….

Read more

SharePoint Online: Add Hyperlink or Picture Column to List using PowerShell

Requirement: Add a hyperlink column to the SharePoint Online list. How to Create a Hyperlink or Picture Column in a List using PowerShell? The Hyperlink or Picture column in SharePoint Online is used to store URLs of web addresses or pictures. The field type can be configured to hold either a URL…

Read more

Customize Suitebar Text and Link in SharePoint 2016 using PowerShell

Requirement: SharePoint 2016 has “SharePoint” as the suite bar branding text by default. What if you want to change it to something meaningful, say “Your Company Intranet”? Well, PowerShell can help customize the branding text, Logo, and URL in SharePoint 2016. PowerShell Script to change Suitebar navigation text and link: Here is…

Read more

SharePoint Online: Delete a Site Column using PowerShell

Requirement: Delete a Site Column in SharePoint Online using PowerShell. How to delete a site column in SharePoint Online? Have you ever added a site column to your SharePoint Online environment and later decided that you no longer want it? If you need to delete a site column in SharePoint Online, you…

Read more

How to Delete a SharePoint Web Application?

SharePoint Web Applications are actually IIS Containers at the top level. Each web application we create from SharePoint creates a respective site in IIS and a content database in SQL Server. They can be deleted using the Central Administration site or PowerShell. To delete a SharePoint 2016 Web Application, follow these steps:…

Read more

SharePoint Online: Delete a List using PowerShell

Requirement: Delete a list in SharePoint Online. How to Delete a List in SharePoint? You may want to delete any list or library available on the SharePoint Online site when they are not needed anymore. Or you may want to delete the list to free up some storage space or remove irrelevant…

Read more

SharePoint Online: Configure Access Requests Settings using PowerShell

Access Request Settings in SharePoint OnlineThe access request feature in SharePoint Online allows people to request access to the content they do not have permission to access. It also allows members of the site to send invitations to users who have no permission. Once the invitations are sent, the Site owner should…

Read more

Get All Users and Groups in SharePoint Online Site using PowerShell

Requirement: Get All Users and Groups Report in SharePoint Online using PowerShell. PowerShell Script to Get All Users and Groups Report in SharePoint Online: Do you need to get a list of all users and groups in SharePoint Online? If so, PowerShell can help! Exporting users and groups from a SharePoint Online…

Read more

SharePoint Online: How to Get Content Type ID using PowerShell?

Content types in SharePoint are used to define the metadata and behaviors of a document or item in a list and are identified by a unique ID known as the Content Type ID. My other article speaks on How to find the content type id in SharePoint, using SharePoint UI and PowerShell…

Read more