powershell 使用Get-Service cmdlet重新启动Sql Server

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用Get-Service cmdlet重新启动Sql Server相关的知识,希望对你有一定的参考价值。

# Date:         23/02/13
# Author:       John Sansom
# Description:  PS script to restart the SQL Server Agent Service for the provided instance
#
# Version:  1.0
#
# Example Execution: .\Restart_SQLServerAgent_v2.ps1 ServerName
 
param([String]$ServerName)
 
Get-Service -computer $ServerName SQLSERVERAGENT | Restart-Service

以上是关于powershell 使用Get-Service cmdlet重新启动Sql Server的主要内容,如果未能解决你的问题,请参考以下文章

如何使用Get-Service命令提取Windows服务的物理路径

使用PowerShell操作Windows服务的命令小结

PowerShell-自定义函数-位置参数:Position

PowerShell Format-Wide 设置显示的列数

获取已禁用/已停止服务的关联应用程序

跨域请求的两种实现方式