How to Provision a service in Sharepoint
Posted on 13. Nov, 2009 by admin in Articles
To Provision a service, 1st enum all services to get the needed all the services and search for the needed service to provision as in the below example:
run: Stsadm –o enumservices
If you are searching for SSP Job Control Service as i did, you can see below that it is disabled so to start it you need to reun the below commands.
<Service>
<Type>Microsoft.Office.Server.Administration.OfficeServerService, Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Type>
<Name />
<DisplayName>SSP Job Control Service</DisplayName>
<Status>Disabled</Status>
</Service>
Run the following commands:
Stsadm –o provisionservice –action stop –servicetype “Microsoft.Office.Server.Administration.OfficeServerService, Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”
Stsadm –o provisionservice –action start –servicetype “Microsoft.Office.Server.Administration.OfficeServerService, Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”
