PowerShell 重启MSSQLSERVER数据库服务


我安装的是Express版本的数据库,服务名称(DisplayName)是  SQL Server (SQLEXPRESS)

# 重启MSSQLServer服务【Express版本】
# DisplayName = "SQL Server (SQLEXPRESS)"
# Name = "MSSQL$SQLEXPRESS"
$mssql_service = Get-Service -Name 'SQL Server (SQLEXPRESS)'
if($mssql_service.CanStop){
    Stop-Service -Force -Name $mssql_service.Name
}

Start-Service $mssql_service.Name
本文链接: https://www.pstips.net/restart-mssqlserver.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注