使用 PowerShell 删除服务

Marion Paul Kenneth Mendoza 2023年1月30日
  1. 在 PowerShell 中使用命令行删除服务
  2. 使用 PowerShell 删除服务
使用 PowerShell 删除服务

在多种情况下,我们需要清理服务。此问题是由于卸载软件将其驱动程序条目或服务留在注册表中引起的。

Windows 将尝试在每次启动时加载它们,失败,并在每次启动时将错误记录到系统事件日志中。

本文告诉我们如何使用命令行和 PowerShell 在 Windows 10 及更早版本中删除孤立服务。

在 PowerShell 中使用命令行删除服务

Windows 中的 sc.exe 旧式命令行工具可以创建、读取、编辑或删除 Windows 服务。要在 Windows 中删除服务,请使用管理员命令提示符中的以下命令行语法。

请确保你以管理员权限在提升的命令提示符下运行。

sc delete service_name

service_name 值是指服务的短名称,而不是其显示名称。打开服务 MMC 并双击要检查的服务以查找短名称。

使用 PowerShell 删除服务

你还可以在 PowerShell 中运行 sc.exe 命令。

在 PowerShell 中运行时,我们需要指定扩展名 sc.exe,因为 PowerShell 中的命令 SC 将被解释为 Set-Content,这是 PowerShell 中的内置 cmdlet。

sc.exe delete service_name

要获取要删除的服务的名称,请在已知具有孤立服务的机器上运行 Get-Service。我们将使用标记为 Name 的列作为 PowerShell 脚本中的服务名称。

Get-Service

我们可以使用 PowerShell 管理员窗口中的以下本机命令来删除服务。

$service = Get-WmiObject -Class Win32_Service -Filter "Name='servicename'"
$service.delete()

如果我们安装了 PowerShell 6.0,那就更容易了。在 PowerShell 6 及更高版本中,你可以使用以下语法删除服务:

Remove-Service -Name ServiceName

在 6.0 以下的旧版本 PowerShell 中运行 Remove-Service 命令会显示错误:

Remove-Service cmdlet 未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。

Marion Paul Kenneth Mendoza avatar Marion Paul Kenneth Mendoza avatar

Marion specializes in anything Microsoft-related and always tries to work and apply code in an IT infrastructure.

LinkedIn

相关文章 - PowerShell Command

相关文章 - PowerShell Service