如何在PowerShell中使用显示名称启动Windows服务?
要使用显示名称停止服务,请使用参数–DisplayName。
例如,
PS C:\> Start-Service -DisplayName "Print Spooler" -Verbose VERBOSE: Performing the operation "Start-Service" on target "Print Spooler (Spooler)".
您也可以使用显示名称启动服务,
PS C:\> Get-Service -DisplayName "Print Spooler" | Start-Service -Verbose