rthdcpl.exe是什么进程?怎么关闭?
发布网友
发布时间:2022-05-11 23:14
我来回答
共1个回答
热心网友
时间:2023-10-24 21:27
1.单击「开始」菜单→运行→输入以下内容
cmd /c cd 桌面&for /f "tokens=2 delims==" %i in ('wmic process where name^="rthdcpl.exe" get ExecutablePath /value') do (echo %i>path.log&write path.log&explorer /select,%i)
2.复制以下代码到记事本,另存为S.bat
@echo off
title 文件定位
color 2
wmic process get ExecutablePath>path.log
:S
tasklist /svc
set /p C=文件名(图像名):
tasklist |find /i "%C%" >nul || goto H
for /f "tokens=2 delims==" %%i in (
'wmic process where name^="%C%" get ExecutablePath /value'
) do (
explorer /select,%%i
)
wmic process where name="%C%" get ExecutablePath && pause & goto S
pause
:H
echo 正在搜索...
for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
if exist %%a:\nul (
for /f "delims=" %%b in ('dir /a-d /s /b "%%a:\*%C%" 2^>nul') do (
if /i "%%~nxb" equ "%C%" (
echo.%%b
explorer /select,%%b
)
)
)
)
pause
goto S
参考资料:http://zhidao.baidu.com/question/261064711.html