Issue/Problem: - Due to some unknown issue
we are not able to find out the OOB publishing content job for a particular web
application. We are performing many option to recreate the job but not able to recreate
the Out of box "Content Type Subscriber" timer job in web application
level.
Resolve: - Run the PowerShell script for Disable and Enable the “Content Type Subscriber” job. Feature is activated when the web app is created. However, something is causing the timer job to not get created. You can run these two PowerShell commands to re-create the timer job. Change the URL to yours
Below is the following script:-
Disable-SPFeature -Identity ContentTypeSyndication -Url http://webappurl.contoso.com -Confirm:$false
Resolve: - Run the PowerShell script for Disable and Enable the “Content Type Subscriber” job. Feature is activated when the web app is created. However, something is causing the timer job to not get created. You can run these two PowerShell commands to re-create the timer job. Change the URL to yours
Below is the following script:-
Add-PSSnapin
Microsoft.SharePoint.PowerShell -EA SilentlyContinue
#Load Module
# Disables the feature
because it's still running in the background when the web app was created.Disable-SPFeature -Identity ContentTypeSyndication -Url http://webappurl.contoso.com -Confirm:$false
# Enables the feature
which will show up on the Timer Job Definitions
Enable-SPFeature
-Identity ContentTypeSyndication
-Url http://webappurl.contoso.com
No comments:
Post a Comment