568 次浏览
Get-Process 是一个 PowerShell cmdlet,用于获取 Windows 终端中所有正在运行的后台进程的实例。在任务管理器“进程”选项卡中显示的任何进程,其所有线程都可以通过 Get-Process 命令在 PowerShell 控制台中显示。
675 次浏览
要在 PowerShell 中启动依赖服务,与使用 –Force 参数停止依赖服务不同,因为没有可用的 –Force 参数。您需要先获取依赖服务,然后启动它们。Get-Service -Name Winmgmt -DependentServices | Start-Service -Verbose
3K+ 次浏览
要使用 PowerShell 启动多个服务,我们需要在服务之间使用逗号 (,)。例如,Start-Service -Name Spooler,AdobeARMservice -VerboseGet-Service -Name Spooler,AdobeARMservice | Start-Service -Verbose要使用显示名称启动服务,Start-Service -Name “Print Spooler”, “Work Folder” -Verbose Get-Service -Name “Print Spooler”, “Work Folder” | Start-Service -Verbose
738 次浏览
要使用显示名称停止服务,请使用参数 –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
2K+ 次浏览
要在 PowerShell 中停止具有依赖服务的服务,使用 -Force 参数。首先,我们将检查特定服务的依赖服务是什么,要获取它们,使用 -DependentService 参数。示例例如,WMI 服务(名称:Winmgmt)具有多个依赖服务。Get-Service -Name Winmgmt -DependentServicesOutputtatus Name DisplayName ------ ---- ----------- Running UALSVC User Access Logging Service Stopped smstsmgr ConfigMgr Task Sequence Agent Stopped SepLpsService Symantec Endpoint Protection Local ... Stopped NcaSvc ... 阅读更多
要启动特定 Windows 服务,您需要使用 Start-Service 命令。示例Start-Service -Name Spooler上面的命令将启动服务名称 spooler。要检查服务是否已启动,请使用 Get-Service –Name Spooler 命令。OutputStatus Name DisplayName ------ ---- ----------- Running spooler Print Spooler此命令不会显示命令进度。要检查命令进度,请使用 –Verbose 参数。PS C:\> Start-Service -Name Spooler -Verbose VERBOSE: Performing the operation "Start-Service" on target "Print Spooler (Spooler)".您也可以使用以下命令启动服务:Get-Service -Name Spooler | Start-Service -Verbose PS C:\> Get-Service -Name Spooler | Start-Service -Verbose VERBOSE: Performing the operation "Start-Service" on target "Print Spooler ... 阅读更多
545 次浏览
可以通过在它们之间提供命令 (,) 来使用名称或显示名称停止多个服务。使用名称和显示名称,Stop-Service -Name Spooler, W32Time -Verbose Stop-Service -DisplayName "Print Spooler","Windows Time" -Verbose
可以通过在它们之间提供命令 (,) 来使用名称或显示名称停止多个服务。使用名称和显示名称,Stop-Service -Name Spooler, W32Time -Verbose Stop-Service -DisplayName "Print Spooler","Windows Time" –Verbose
577 次浏览
与 -Name 参数类似,当您添加 -DisplayName 参数后跟服务显示名称时,它将停止具有 DisplayName 的服务。Stop-Service -DisplayName 'Print Spooler' -VerboseORGet-Service -DisplayName "Print Spooler" | Stop-Service -Verbose
22K+ 次浏览
要使用 PowerShell 停止特定服务,您需要使用 Stop-Service 命令。语法Stop-Service -Name ServiceName Stop-Service -DisplayName ServiceDisplayName示例Stop-Service -Name Spooler要检查服务是否已停止,请键入 Get-Service -Name Spooler。OutputStatus Name DisplayName ------ ---- ----------- Stopped Spooler Print Spooler您也可以使用 -Verbose 参数来检查命令进程。PS C:\Windows\system32> Stop-Service -Name spooler -Verbose VERBOSE: Performing the operation "Stop-Service" on target "Print Spooler (spooler)".您也可以使用以下命令执行停止服务:Get-Service -Name Spooler | Stop-Service -Verbose您也可以使用通配符 ... 阅读更多