Skip to content

Instantly share code, notes, and snippets.

@khalilovcmd
Created October 1, 2015 04:42
Show Gist options
  • Save khalilovcmd/99ea97ce3cb93814e849 to your computer and use it in GitHub Desktop.
Save khalilovcmd/99ea97ce3cb93814e849 to your computer and use it in GitHub Desktop.
Stopping HDInsight Emulator Services on Windows (Powershell)
$services = Get-Service -DisplayName Apache*
foreach ($i in $services)
{
Start-Service $i.ServiceName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment