Skip to content

Instantly share code, notes, and snippets.

@AmrEldib
Created November 8, 2014 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AmrEldib/de4e018fe11a98b42a18 to your computer and use it in GitHub Desktop.
Save AmrEldib/de4e018fe11a98b42a18 to your computer and use it in GitHub Desktop.
MirrorHardDrives-GetSqlServiceStatus
function Get-SqlServiceStatus ($serviceName)
{
# Get a reference to the service
$sqlService = Get-Service $serviceName
# Return the service status
return $sqlService.status
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment