Windows server Task scheduler Monitoring event id 100

The history of a task is tracked by events. These events can be viewed in Task Scheduler for each task to track when the task was registered, run, and when it completed or failed. The progress of a task can be monitored through its history. A task can be controlled by running or stopping the task manually (on-demand).

Event Details :

Product:                 Windows Operating System
ID:                            100
Source:                    Microsoft-Windows-TaskScheduler
Version:                  6.1
Symbolic Name:  JOB_START
Message:               Task Scheduler started the “%3” instance of the “%1” task for user “%2”.

Resolve :

This is a normal condition. No further action is required.

500 Internal Server Error sharepoint2013 SSRS

While trying to install SharePoint Server Reporting Services got into error “SSRS Errors, Gotta catch ‘em all!“. The error is basically getting a “The remote server returned an error: (500) Internal Server Error” whenever you click on either “System Settings” or “Manage Jobs

manage reporting services setting

manage reporting services setting

The error:

something went wrong error

something went wrong error

This doesn’t tell us much, however when we go into Event Viewer we find two event IDs that are related to this and they both have similar messages.

event viewer error message

event viewer error message

Event ID 6398

event viewer error message2

event viewer error message2

The thing we find in common in both those errors is “Could not find permission set named ‘ASP.Net’”. Here are the steps. What you probably already done to get to the error:

  • Install Reporting Servers + Addin
  • Run the PowerShell commands (Install-SPRSService & Install-SPRSServiceProxy & get-spserviceinstance -all |where {$_.TypeName -like “SQL Server Reporting*”} | Start-SPServiceInstance)
  • Create the SSRS Service Application.

What I did to fix it:

  • Delete the SSRS Service Application as well as Databases.
  • Run the following PowerShell command: “get-spserviceinstance -all |where {$_.TypeName -like “SQL Server Reporting*”} | Stop-SPServiceInstance
  • Run the following PowerShell command: “Install-SPRSService –Uninstall
  • Run the following PowerShell command: “Install-SPRSServiceProxy –Uninstall
  • Go to Control Panel, Select SQL Server and then click REPAIR. Do a full repair of the SSRS + Addin feature (you shouldn’t have anything else installed on the server anyway, so just select all)
  • Run the PowerShell commands (Install-SPRSService & Install-SPRSServiceProxy & get-spserviceinstance -all |where {$_.TypeName -like “SQL Server Reporting*”} | Start-SPServiceInstance)
  • Create the SSRS Service Application.

Now everything should work! Drop a comment if this helped!

EventID 2548 sharepoint search

I have built a new SharePoint 2013 environment and after provisioning a new Search Service Application the following was regularly being logged in the Application Event Log:

Content Plugin cannot be initialized –  list of CSS addresses is not set

 

eventid 2548 css adress not set sharepoint search

eventid 2548 css address not set sharepoint search

After a fair amount of Googling and looking through logs I learned that this was caused by the Search Service Application not being fully provisioned.  After removing and recreating the Search Service Application these errors went away.