Win7 利用批处理文件结束进程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Win7 利用批处理文件结束进程相关的知识,希望对你有一定的参考价值。
@echo off
title 结束进程正在进行...
::结束进程TeamViewer.exe
wmic process where name="TeamViewer.exe" call terminate
::结束进程002_酷我音乐
set var001="KwMusic.exe"
wmic process where name=%var001% call terminate
::结束进程003_暴风影音
wmic process where name="StormPlayer.exe" call terminate
exit
以上是关于Win7 利用批处理文件结束进程的主要内容,如果未能解决你的问题,请参考以下文章