Import-Module: The specified module 'Microsoft.Online.SharePoint.Powershell'...
Problem: When trying to add PowerShell module for SharePoint online, using "Import-Module Microsoft.Online.SharePoint.PowerShell", it resulted in below error in both PowerShell console and in...
View ArticleSharePoint Online: Get List in PowerShell
SharePoint Online: Get List from PowerShellHere is the PowerShell to Get SharePoint Online ListImport-Module Microsoft.Online.SharePoint.Powershell -DisableNameChecking#Config Variables for Site URL,...
View ArticleSharePoint Online: How to Change Site Logo using PowerShell?
Changing logo is a common requirement when it comes to branding SharePoint online sites.How to change Logo in SharePoint Online:Changing logo in sharepoint online is a matter of few clicks. To add logo...
View ArticleCopy Group Memberships of a User in SharePoint using PowerShell
Requirement: Copy SharePoint Group Memberships of one user to another userSolution: You can copy group memberships of one user to another user to have identical SharePoint Permissions for a SharePoint...
View ArticleSharePoint Online: PowerShell to Send Email
We can send emails from SharePoint online, either with SPUtility's SendEmail function or with PowerShell cmdlet Send-MailMessage. Here are examples in both the cases:PowerShell to Send Email in...
View ArticleSharePoint Online: How to Add Term Store Administrator
Problem:Ā SharePoint Online Term Store is read-Only to everyone including SharePoint Online Administrators!Solution: Add Term Store Administrator! To work with Term store management tool in SharePoint...
View ArticleSharePoint Online: Delete Term Group in Term Store using PowerShell
How to Delete a Group in SharePoint Online Term Store:Login to your SharePoint admin center site. (E.g. https://yourdomain-admin.sharepoint.com)Click the "term store" link on the left navigation...
View ArticleSharePoint Online: Delete Term Set using PowerShell
How to delete a Term Set in SharePoint Online?To delete a term set from SharePoint online term store, follow these steps:Login to your SharePoint Online admin center site. (E.g....
View ArticleSharePoint Online: Export Term Set to CSV using PowerShell
Requirement: Had to extract all terms in a term set to CSV format in SharePoint Online.Unfortunately, there is no way to export sharepoint online export term set from UI. But PowerShell can help!...
View ArticleSharePoint Online: Export Term Store Data to CSV using PowerShell
Requirement: Export Term store data from SharePoint Online site to a CSV fileSolution: There is no out of box way to export complete term store data in SharePoint online. However, we can utilize...
View ArticleSharePoint Online: Delete Column from List using PowerShell
Requirement: SharePoint Online delete column from list.How to remove a column from SharePoint Online List?To delete a list column, follow these steps:Go to List settings by going to List tab >>...
View ArticleSharePoint Online: Rename Folder using PowerShell
PowerShell to Rename Folder in SharePoint Online#Load SharePoint CSOM AssembliesAdd-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server...
View ArticleGet All Available Cmdlets in SharePoint Online Management Shell
Here is a nifty trick to find all available cmdlets in SharePoint online management shell.Open SharePoint Online Management Shell and Enter: Get-Command | ? { $_.ModuleName -eq...
View ArticleSharePoint Online: Add Site Column to List using PowerShell
Requirement: Add an existing site column to SharePoint list or library using PowerShell.How to Add a Site Column to SharePoint Online List?Site columns in SharePoint provides great reusability without...
View ArticleSharePoint Online: Create Site Column using PowerShell
Site columns in SharePoint OnlineSite columns provides great re-usability in SharePoint without having to recreate fields every timeĀ you need them in lists and libraries. They save a lot of time...
View ArticleSharePoint Online: Create Date and Time Column in List using PowerShell
How to Add Date and Time Column to SharePoint Online List?Browse to your SharePoint Online site and then Navigate to the target list in which you want to create date and time column. Under the List...
View ArticleSharePoint Online: Add Multiple Lines of Text Columnto List using PowerShell
How to Add Multiple Lines of Text Field to List in SharePoint Online?Browse to your SharePoint Online site and Navigate to the target list in which you want to add Choice column.Under the List tab,...
View ArticleSharePoint Online: Add Managed Metadata Column to List using PowerShell
SharePoint Online: How to Add Managed Metadata Field to List or Library:Browse to your SharePoint Online site and Navigate to the target list in which you want to add Managed Metadata column.Under the...
View ArticleSharePoint Online: Add Calculated Column to List using PowerShell
Requirement: Add Calculated Column to SharePoint Online ListHow to Add Calculated column to SharePoint Online List?Browse to your SharePoint Online site and Navigate to the target list in which you...
View ArticleSharePoint Online: Find and Delete Orphaned Users using PowerShell
What is "Orphaned Users" in SharePoint Online?In short, Orphaned users are those who deleted from the authentication provider (such as removed from Active Directory when user leaves the organization),...
View Article