Wednesday, February 5, 2020

Stop/Start DocLink Services Script

The DocLink Management Server has services that need to be restarted in a specific order. I created two batch files that will gracefully restart these services

Stop_DocAlpha_Services.bat

Net Stop "DLIndexingSvc"
Net Stop "DLFullTextSvc"
Net Stop "DLERMSvc"
Net Stop "DLEventSvc"

Net Stop "DLSupportSvc"
Net Stop "DLRDCSvc21"
Pause

Start_DocAlpha_Services.bat

Net Start "DLRDCSvc21"
Net Start "DLSupportSvc"

Net Start "DLIndexingSvc"
Net Start "DLFullTextSvc"
Net Start "DLERMSvc"
Net Start "DLEventSvc"
Pause

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.