Remove-Service
删除 Windows 服务。
语法
Remove-Service
[-Name] <String>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-Service
[-InputObject <ServiceController>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Remove-Service
cmdlet 删除注册表和服务数据库中的 Windows 服务。
PowerShell 6.0 中引入了 Remove-Service
cmdlet。
示例
示例 1:删除服务
这会删除名为 TestService 的服务。
Remove-Service -Name "TestService"
示例 2:使用显示名称删除服务
此示例删除名为 TestService 的服务。 该命令使用 Get-Service
获取一个对象,该对象表示使用显示名称的 TestService 服务。 管道运算符(|
)通过管道将对象传递给 Remove-Service
,这会删除服务。
Get-Service -DisplayName "Test Service" | Remove-Service
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InputObject
指定 ServiceController 表示要删除的服务的对象。 输入包含对象的变量,或键入获取对象的命令或表达式。
InputObject 参数不枚举集合。 如果传递集合,则会引发错误。 使用集合时,通过管道传递输入来枚举值。
类型: | ServiceController |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Name
指定要删除的服务的服务名称。 允许使用通配符。
类型: | String |
别名: | ServiceName, SN |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | True |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
System.ServiceProcess.ServiceController, System.String
可以通过管道将服务对象或包含服务名称的字符串传递给此 cmdlet。
输出
None
此 cmdlet 不返回任何输出。
备注
此 cmdlet 仅在 Windows 平台上可用。
若要运行此 cmdlet,请使用 以管理员身份运行 选项启动 PowerShell。