一、通过 Windows Management Instrumentation (WMIC) 卸载
打开命令提示符(管理员权限) 按 `Win + X`,选择“命令提示符(管理员)”或“Windows PowerShell(管理员)”。
获取软件名称
输入以下命令列出所有已安装软件:
```bash
wmic product get name
```
找到目标软件的完整名称(如 `Skype Meetings`)。
执行卸载命令
使用 `wmic` 命令卸载软件,格式为:
```bash
wmic product where name="软件名" call uninstall
```
例如卸载 Skype Meetings:
```bash
wmic product where name="Skype Meetings" call uninstall
```
卸载过程中可能需要确认操作。
二、通过软件安装包卸载
使用 `msiexec` 命令
若软件通过 MSI 安装,可使用以下命令卸载(需管理员权限):
```bash
msiexec /x {产品代码}
```
例如:
```bash
msiexec /x {7911E943-32CC-45D0-A29C-56E6EF762275}
```
若卸载受密码保护,需在命令中添加用户名和密码:
```bash
msiexec /x {产品代码} /pKLLOGIN=你的用户名 /pKLPASSWD=你的密码
```
三、强制卸载(适用于顽固程序)
使用 `wmic` 强制卸载
输入以下命令强制卸载软件:
```bash
wmic product where name="软件名" call uninstall /force
```
此操作可能需要较长时间,请耐心等待。
四、补充说明
服务卸载: 若软件以服务形式运行,可使用 `sc delete 服务名` 命令(如 `sc delete MyService`)。 残留清理
权限要求:所有命令需以管理员身份运行。
通过以上方法,可高效地通过命令行卸载软件。若需批量卸载,建议先通过 `wmic product get name` 获取完整列表,再批量执行卸载命令。