My task was to create a report detailing various properties of a SharePoint site collection. Identifying which properties corresponded to specific PowerShell syntax required additional time.
Ultimately, I developed this script to determine which properties are available in different syntaxes such as PnPTenantSite, PnPSite, and PnPWeb in PnP.Powershell module.
This script has proven to be very useful in understanding the properties. Please adjust the input as per your requirements; I have included all site collections in the tenant. The output is exported into CSV files.
Replace your Azure App ClientID and AdminSiteUrl. When using -Interactive in Connect-PnPOnline, you will see the credentials pop-up a couple of times. I used to keep the SP admin center site logged in on the default browser with same credentials to reduce the number of interactive sessions.
The Microsoft.SharePoint.Client module is part of the SharePoint Online Client Components SDK, which is used to enable development with SharePoint Online. This module allows developers to interact with SharePoint Online using client-side object model (CSOM) APIs. It provides a way to perform various operations on SharePoint Online sites, such as creating and managing lists, libraries, and site collections, as well as handling permissions and workflows[1].
The SharePoint Online Client Components SDK can be downloaded from the official Microsoft Download Center[1]. However, it is recommended to use NuGet packages rather than installing CSOM assemblies to the Global Assembly Cache (GAC)[1].
Additionally, the Microsoft.Online.SharePoint.PowerShell module is another tool that can be used to manage SharePoint Online. It allows administrators to perform tasks such as updating the SharePoint Online Management Shell and managing tenant-level settings[2].
The Microsoft.SharePoint.Client and Microsoft.Online.SharePoint.PowerShell modules serve different purposes and are used in different contexts when working with SharePoint Online.
The Microsoft.SharePoint.Client module is part of the SharePoint Online Client Components SDK. It allows developers to interact with SharePoint Online using client-side object model (CSOM) APIs. This module is primarily used for development purposes, enabling operations such as creating and managing lists, libraries, and site collections, as well as handling permissions and workflows[3].
On the other hand, the Microsoft.Online.SharePoint.PowerShell module is a set of cmdlets specifically designed for SharePoint Online administration. It allows administrators to perform various management tasks, such as updating the SharePoint Online Management Shell and managing tenant-level settings[4]. This module is used within PowerShell to automate administrative tasks and manage SharePoint Online environments more efficiently[5].
In summary, the Microsoft.SharePoint.Client module is geared towards developers for building and interacting with SharePoint Online applications, while the Microsoft.Online.SharePoint.PowerShell module is intended for administrators to manage and configure SharePoint Online environments.
The script uses the Get-InstalledModule cmdlet to identify all installed PowerShell modules. It then employs the -match operator to find modules whose names include "Microsoft". For these identified modules, the script executes the Uninstall-Module cmdlet with the -Force option to guarantee their removal. Essentially, the script is designed to remove any PowerShell module that contains "Microsoft" in its name.
Another variable -notmatch is targeted to remove any PowerShell module that does not contain"Microsoft" in its name.
Additionally, there's a variable, $excludedModules, which is an array holding the names of modules that you wish to keep. By using the condition -and $excludedModules -notcontains $_.Name, the script ensures it only removes "Microsoft" named modules that are not specified in the exclusion list.
You can customize this list by substituting "ModuleName1" and "ModuleName2" with the names of the modules you'd like to exclude from being uninstalled.
NOTE: In PowerShell, the # symbol is used to add comments. Comments are lines or parts of lines that are not executed as part of the script. They are used to provide explanations or notes about the code, making it easier to understand.
Microsoft has recently restructured how administrators can
modify Teams URLs. Previously managed through the SharePoint admin center, this
function has now transitioned to the Teams & Groups section within the
Microsoft 365 admin center. This change aims to streamline administrative tasks
and provide a more integrated user experience.
Background
The SharePoint admin center traditionally housed various
features for managing team sites and associated URLs. However, as Microsoft's
suite of tools has evolved, the need for a more cohesive approach to
administrative functions became apparent. This led to the migration of Teams
URL management to the Microsoft 365 admin center under the Teams & Groups
section.
Steps to Modify Teams URL in Microsoft 365 Admin Center
To ensure a smooth transition and ease of use, follow these
detailed steps to modify Teams URLs within the new location:
Accessing the Microsoft 365 Admin Center
·Navigate to the Microsoft 365 admin center and logging in with your administrator credentials. Once logged in, you will see a navigation panel
on the left-hand side of the screen.
Locating Teams & Groups
·In the navigation panel, scroll down and select
the "Teams & groups" option. Select
"Active teams & groups".
Modifying the Teams URL
·Find the specific team whose URL you wish to
modify from the list of available teams. Click on the Name of the Team to open its settings and
details.
·Locate the Site address.
Click the "Edit" button down to it.
·Enter the desired new SharePoint site address and confirm the
changes by clicking "Save".
Verification
·After saving the changes, ensure that the new
URL is functional by accessing the team through the updated link.
·If any issues arise, verify the changes in the
admin center and consult Microsoft support if necessary.
Conclusion
The relocation of Teams URL modification to the Teams &
Groups section of the Microsoft 365 admin center represents a strategic move
towards a more unified administrative environment. By following the outlined
steps, administrators can efficiently manage Teams URLs and ensure seamless
access for their organization.
For further assistance or detailed guidance, please refer to
the official Microsoft documentation or contact support.
Copilot is a big deal on Microsoft 365 these days. Lots of people are using it, and Sensitivity labels are getting more popular too. I had to run a PowerShell Script to get the Properties of all files in a Document library, including their Sensitivity labels. PnP PowerShell made it easy for me.
I ran the script using the PowerShell extension in Visual Studio Code.
E3 ($249) and E5($449) licenses have a big price gap, and E5 license has the advantage of auto labelling. Without it, we have to label everything manually, which is very time-consuming when we deal with many site collections and a lot of content.
Then, using the below PowerShell Script, I applied Sensitivity labels to Document libraries in each site collection. This way, the Office files that are uploaded or updated will get the label from the Document Library. However, we still need to label other file types manually.
List all the sites in a CSV file with URL as Header (As shown below).
# symbol in PowerShell script is used for comments.
We need to remove 150 sites from Search Index. We have to make sure they don't show up in search results by turning off that option for each site. The normal way of doing this is too slow for so many sites. We use a faster PowerShell script method to handle 150 sites at once.
Regular method
By default, the option Allow this site to appear in Search results is set to Yes for all Site collections in Sharepoint online. This means the site content can show up in search results.
On the site, select Settings (Wheel) icon., and then select Site settings. If you don't see Site settings, select Site information, and then select View all site settings.
Under Search, click Search and offline availability.
In the Indexing Site Content section, under Allow this site to appear in Search results, select Yes to allow the content of the site to appear in search results.
If you don't want the content to show up in search results, choose No.
NOTE: Search results are always security trimmed, so users will only see content they have permission to see.
PowerShell Script Method
List all the sites in a CSV file with URL as Header (As shown below).
# symbol in PowerShell script is used for comments.
We have a requirement to add 150 sites to the exclusion list of our retention policy. While we have traditionally accomplished this by manually editing the retention policy and adding the sites, this method is not feasible for such a large number of sites.
NOTE:Excluding sites from policy requires time, ranging from 10 minutes to 24 hours, to take effect.
Edit Retention Policy > Click on Edit (under Excluded) and add the sites.
Instead, we would like to use a PowerShell script to automate the process. This will allow us to add all the sites quickly and efficiently.
List all the sites in a CSV file with URL as Header (As shown below).
NOTE: I had to exclude 150 sharepoint sites from the retention policy, but it only allows 100 at a time. So I split them into two CSV files, one with 100 and one with 50. Then I ran the Powershell Script for each CSV file separately.
Below is the PowerShell Script.
NOTE: This activity requires certain permissions, such as Compliance Admin or Global Admin.
If your tenant has multi-factor authentication turned on, your Internet Explorer was disabled, with Edge as default browser, and you were trying to use SharePoint Designer 2013, you will encounter the error shown below.
"The Web Server does not appear to have any authentication methods enabled. It asked for user authentication, but did not send a WWW-Authenticate header."
This was because Office 2016 and Older Versions use Basic Authentication method.
As SharePoint Designer 2013 was part of Office 2013 clients, and to overcome this, you need to enable Modern Authentication.
To enable modern authentication for any devices running Windows, you need to set the following registry keys.
Once the above Registry Keys were added with Hexadecimal value 1, then it should look as shown below.
Open the SharePoint Designer 2013, Go to Account. It should show your login info.
Now try to open the SharePoint Online Site Collection, it opened like charm.
In this post, we want to achieve the ability of adding or updating the Primary admin for any Site Collection thru PowerShell Commands.
With the new features in SharePoint Admin center, we lost the ability to change the Primary Admin for any Site Collection thru 'Permissions' feature. With new 'Membership' feature, we can add Site admins, Site Owners, Site Members and Site Visitors, but cannot add or update any Site admin(s) as Primary Admin.
With the below PowerShell Commands are updating the Primary Admin from Venugopal Reddy (gvr@gurram.onmicrosoft.com) to Mahin Gurram (gmr@gurram.onmicrosoft.com)
Usually, we have Theme colors changing the entire theme of the site including document libraries, lists and Calendars. Here we have an option to add a little CSS script to change the colors of the default Calendar without adding new Views and using Overlay of Calendars.
The default color of the Calendar.
Go to Calendar page > Click on Wheel icon > Edit Page > Add Web Part > Media and Content > Content Editor > Add
The Content Editor Web part was added to the Calendar Page. Click on 'Click here to add new content'.
It will show new Tool bar Menus on top side. Under Format Text > Click on 'Edit Source'
<style type="text/css">
.ms-acal-item {
BORDER: #C0362C; BACKGROUND-COLOR: #C0362C
}
.ms-acal-default-hover {
BORDER: #C0362C; BACKGROUND-COLOR: #C3B7AC
}
.ms-acal-apanel-item {
BORDER: #C0362C; BACKGROUND-COLOR: #C3B7AC
}
</style>
Copy, paste the above CSS Code into the HTML Source Window, Click OK. You will observe the entries color change in the Calendar.
Use the below Command to install PnP PowerShell Module.
Install-Module PnP.PowerShell
Once the PnP PowerShell Module is installed successfully, we need to run the below command to register Azure AD Application and Grant Access to the Office 365 tenant by Accepting the Consent on behalf of your organization.
SharePoint Online: “Delete this Document Library” is missing!
While migration to SharePoint Online, from SharePoint 2007, 2010 & 2013 versions, there is a chance to copy over the lists and Libraries created by "This system library was created by the Publishing feature" where you don't see option to delete those lists or libraries.
We can achieve that by using the below Powershell Script.
In the below PowerShell Script, we targeted Form Templates Library technically called as FormServerTemplates.
The above is the screenshot before running the Script.