在Windows系统中,通过命令提示符(CMD)删除程序可以通过以下步骤完成:
以管理员身份运行命令提示符
在Windows搜索框中键入“cmd”。
在搜索结果中右键单击“命令提示符”并选择“以管理员身份运行”。
使用Windows Management Instrumentation (WMI) 命令卸载程序
在命令提示符下键入以下命令并按Enter键:
```
wmic
```
这将启动WMI命令行工具。
获取已安装程序的列表
键入以下命令并按Enter键以获取所有已安装程序的名称:
```
product get name
```
或者,你可以直接在命令前加上“wmic”来运行:
```
wmic product get name
```
卸载特定程序
从列表中找到要卸载的程序的名称。
使用以下命令卸载程序,将`program name`替换为实际的程序名称:
```
product where name="program name" call uninstall
```
例如,要卸载Skype Meetings,命令如下:
```
product where name="Skype Meetings" call uninstall
```
通过以上步骤,你可以使用CMD命令行工具以管理员身份卸载Windows系统中的程序。请确保在卸载程序之前备份重要数据,以防万一。