Skip to content

Instantly share code, notes, and snippets.

@davidroberts63
Created July 19, 2016 02:56
Show Gist options
  • Save davidroberts63/9f435c557f283114319439228db57cfe to your computer and use it in GitHub Desktop.
Save davidroberts63/9f435c557f283114319439228db57cfe to your computer and use it in GitHub Desktop.
Add's MSSQLSERVER as a dependency service to Octopus Deploy for use in test VMs that are started and stopped a lot.
$serviceName = "OctopusDeploy"
$cmd = "sc.exe config $serviceName depend= "
(Get-Service $serviceName | Select -ExpandProperty ServicesDependedOn) | % {$cmd += $_.Name + "/"}
$cmd += "MSSQLSERVER"
$cmd
Invoke-Expression $cmd -Verbose
Get-Service $serviceName | Select *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment