Skip to content

Instantly share code, notes, and snippets.

@jhorsman
Last active January 6, 2022 22:41
Show Gist options
  • Select an option

  • Save jhorsman/68c19e1bb1af1ec0c214ea470824ceac to your computer and use it in GitHub Desktop.

Select an option

Save jhorsman/68c19e1bb1af1ec0c214ea470824ceac to your computer and use it in GitHub Desktop.
Scripted start SDL Web 8.5 microservices
# This script can be used to manually start Tridion Sites micro-services
#
# On some all-in-one Tridion machines I use this script as a scheduled task to have a
# delayed start of the CD micro-services. The transcript creates a log file.
Start-Transcript -Path (Join-Path $PSScriptRoot "start-CD-services.log") -Append
Start-Service SDLWeb*DiscoveryService -Verbose
Start-Service SDLWeb*DeployerService -Verbose
Start-Service SDLWeb*ContentService -Verbose
Start-Service SDLWeb*ContextService -Verbose
Start-Service SDLWeb*PreviewService -Verbose
Start-Service SDLWeb* -Verbose
Start-Service SDLDXA* -Verbose
Stop-Transcript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment