Skip to content

Instantly share code, notes, and snippets.

@MartinMiles
Created November 5, 2019 04:25
Show Gist options
  • Select an option

  • Save MartinMiles/26f1c358b859596bc5b8915ec597ae2a to your computer and use it in GitHub Desktop.

Select an option

Save MartinMiles/26f1c358b859596bc5b8915ec597ae2a to your computer and use it in GitHub Desktop.
Sitecore Services List
Write-Host "SQL" -ForegroundColor Green
Get-Service *SQL*
Write-Host "SOLR" -ForegroundColor Green
Get-Service *solr*
(gwmi win32_service|?\{$_.name -like "*solr*"}).pathname
Write-Host "Mongo" -ForegroundColor Green
Get-Service *mongo*
(gwmi win32_service|?{$_.name -like "*mongo*"}).pathname
Write-Host "xConnect" -ForegroundColor Green
Get-Service *xconnect*
(gwmi win32_service|?{$_.name -like "*xconnect*"}).pathname
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment