Showing posts with label Sharepoint Alert. Show all posts
Showing posts with label Sharepoint Alert. Show all posts

Monday, November 6, 2017

“Alert me” option missing in SharePoint

Issue Description

Recently in our SharePoint 2013 farm, I had noticed that the "Alert Me" button was missing from library tab in 
SharePoint Ribbon.



Resolution

1. Please try this article first -  “Alert me” option missing in SharePoint

2. If this solution dint help, try using the below STSADM or PowerShell command to enable the alerts:

STSADM:
stsadm -o setproperty -pn alerts-enabled -pv true -url http://webappURL
PowerShell
$webapp=Get-SPWebApplication "http://webappURL"
$webapp.AlertsEnabled = $true

$webapp.Update()




Tuesday, March 26, 2013

“Alert me” option missing in SharePoint


Recently, I came across this issue where the Alert Me option in SharePoint was missing.



How to fix this

Browse to Outgoing E-Mail settings in Central Administration.  System Settings -> Outgoing E-Mail Settings -> specify the outbound SMTP server & E-Mail settings.


This should fix the issue.