Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Verify That SQL Server is Installed on a ComputerContent of Verify That SQL Server is Installed on a Computer.vbsMD5 Hash: B65E45C1734966CD5F10AA8AA76FBB0B |
||
' Description: Indicates whether SQL Server is running on a computer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colServices = objWMIService.ExecQuery _ ("Select * from Win32_Service Where Name = 'MSSQLServer'") If colServices.Count > 0 Then For Each objService in colServices Wscript.Echo "SQL Server is " & objService.State & "." Next Else Wscript.Echo "SQL Server is not installed on this computer." End If | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |