Copy Alerts from One SharePoint List or Library to Another using PowerShell

Requirement: Copy Alerts from one SharePoint list to another list. Solution: Use this PowerShell script to copy alerts between SharePoint lists or libraries. My scenario is: We have a list with a number of alerts created for various users. We copied that list to a new site through “Save list as template,”…

Read more

Disable Alerts on SharePoint 2013 List using PowerShell

Requirement: Temporarily disable Alert Emails on a SharePoint list. How to disable alerts on a SharePoint list? SharePoint Alert objects have “Status” property which can be turned ON or OFF. As there is no UI to disable or enable alerts in SharePoint directly from the browser, we can do it programmatically with…

Read more

Create SharePoint Alert for a Group

SharePoint doesn’t provide a direct way to create alerts for groups. Alerts are always targeted to individual user accounts in SharePoint. If you have a requirement to create alerts for a group of people, create an E-mail enabled AD security group and add an alert to it from SharePoint. Set alert to…

Read more

Find and Delete Orphaned Alerts in SharePoint

Problem Description: In Short – When users leave your organization and removed from Active Directory (AD) they become orphans in SharePoint! Also their alerts!! Why we care about them: To keep SharePoint clean, we’ve to remove em’ from all SharePoint sites. So, I’ve written a PowerShell script to scan all site collections…

Read more

Drive Space Monitoring using PowerShell Script

In SharePoint servers monitoring disk space is a common administrator task. Because, SharePoint servers may run out of disk space from SharePoint, IIS Logs, SQL Server transaction logs, or even from SharePoint content (If you don’t have Quotas enabled!) There are a lot of first-party, third-party utilities available, such as SCOM to…

Read more

Integrating SMS Alert Configuration in SharePoint

Introduction: SMS Alerting is a new feature introduced in SharePoint 2010. Business requirements like, user should get a SMS whenever new announcement published or stock level decreased can be fulfilled with SMS integration. In some cases, SMS is preferred than Email message as SMS is fast and Email may get filtered by…

Read more

Alert Management Web Part – Released!

Received a lot of emails from people who read my post Alert Management Web part Mock-up on Alert Management Web Part Solution. Business Problem: In a Project management site, When new project sites created, the Project Manager creates alerts for all team members in multiple Lists/Libraries.  The pain point is: He needs…

Read more

Disable Alerts from a SharePoint List or Library

The end-user came up with a requirement: Disable alerts from a particular SharePoint list, where 100’s of people subscribed already. Its apparent that we can disable alerts for web application either from Central Administration or executing the stsadm: stsadm -o setproperty -url https://server_name -pn alerts-enabled -pv false But here the requirement is…

Read more