Windows卸载命令
时间: 2024-12-20 21:07:34 浏览: 15
在Windows操作系统中,可以使用命令行工具来卸载软件。以下是一些常用的卸载命令:
1. **使用`wmic`命令**:
`wmic`是Windows管理工具命令行的缩写,可以通过它来卸载软件。
```shell
wmic product where "name='软件名称'" call uninstall
```
例如,要卸载名为“Example Software”的软件,可以使用以下命令:
```shell
wmic product where "name='Example Software'" call uninstall
```
2. **使用`msiexec`命令**:
`msiexec`是Windows Installer的命令行工具,用于安装、修改和卸载Windows Installer程序。
```shell
msiexec /x {产品代码} /quiet
```
其中,`{产品代码}`是软件的唯一标识符,可以在注册表或软件的安装目录中找到。
3. **使用`powershell`命令**:
PowerShell是Windows的高级命令行工具,可以通过它来卸载软件。
```powershell
Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -eq "软件名称"} | ForEach-Object {$_.Uninstall()}
```
例如,要卸载名为“Example Software”的软件,可以使用以下命令:
```powershell
Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -eq "Example Software"} | ForEach-Object {$_.Uninstall()}
```
阅读全文