Created
October 1, 2015 04:42
-
-
Save khalilovcmd/99ea97ce3cb93814e849 to your computer and use it in GitHub Desktop.
Stopping HDInsight Emulator Services on Windows (Powershell)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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