Skip to content

Instantly share code, notes, and snippets.

@RyanDurkin
Created October 12, 2012 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RyanDurkin/3879176 to your computer and use it in GitHub Desktop.
Save RyanDurkin/3879176 to your computer and use it in GitHub Desktop.
Restarting Tridion Services Using A Batch File
@echo off
net stop "Tridion Cache Channel Service"
net stop "Tridion Content Deployer"
net stop "Tridion Content Manager Publisher"
net stop "Tridion Content Distributor Transport Service"
net stop "Tridion Content Manager Business Connector"
net stop "Tridion Content Manager Search Host"
net stop "Tridion Content Manager Search Indexer"
net stop "Tridion Content Manager Service Host"
net stop "Tridion Content Manager Workflow Agent"
net stop "Tridion Monitoring Service"
net stop "Tridion Outbound Email Bounce Processor"
net stop "Tridion Outbound Email Collect Tracking Data"
net stop "Tridion Outbound Email Mailer"
net stop "Tridion Outbound Email Queue Triggered Mailings"
net stop "Tridion Outbound Email Synchronization"
net start "Tridion Cache Channel Service"
net start "Tridion Content Deployer"
net start "Tridion Content Distributor Transport Service"
net start "Tridion Content Manager Business Connector"
net start "Tridion Content Manager Publisher"
net start "Tridion Content Manager Search Host"
net start "Tridion Content Manager Search Indexer"
net start "Tridion Content Manager Service Host"
net start "Tridion Content Manager Workflow Agent"
net start "Tridion Monitoring Service"
net start "Tridion Outbound Email Bounce Processor"
net start "Tridion Outbound Email Collect Tracking Data"
net start "Tridion Outbound Email Mailer"
net start "Tridion Outbound Email Queue Triggered Mailings"
net start "Tridion Outbound Email Synchronization"
set /p name = Press enter key to end program.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment