문제

I would like to create an alert on the central admin Health Reports list (http://server:8080/Lists/HealthReports/AllItems.aspx) if that is possible.

I have created an alert with:

  • Change Type=All changes
  • Send Alerts for These Changes=Anything changes
  • When to Send Alerts=Send notification immediately

The alert seems to create okay, I get the standard creation email:

'xyz' has subscribed you for alert 'Review problems and solutions' on 'Central Administration'. You will receive alerts according to the delivery method, timing and criteria that were selected when the alert was created. You can change this alert or any of your other alerts on the My Alerts on this Site page.

But then when I delete some of the warnings, and re-generate them, I don't get any alerts.

Has anyone got this working?

도움이 되었습니까?

해결책

I ran into the same problem on my development instance. I checked the job status for the Immediate Alerts job and there was not one listed for the Central Admin web application.

I opened up the SharePoint Management Shell and checked if this was enabled for the CA site with the following command

stsadm -o getproperty -pn job-immediate-alerts -url http://server:port

This command returned

<Property Exists="No"/>

So I set the property with the following command

stsadm -o setproperty -pn job-immediate-alerts -pv "every 5 minutes between 0 and 59" -url http://server:port

I checked the job status in CA and there is now a job for Immediate Alerts for this web application. After about 5 minutes the emails started appearing.

I checked a couple of other CA instances in our development environment and they were configured the same way. It was at least off by default for our installation settings.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top