初来咋到 由一个问题一直不知道咋解决
比如有一个a.exe进程 下面代码能将a.exe进程的路径输出到当前目录的path.txt中
怎样接下来写一段让后面的批处理调用path.exe中的路径在其test目录创建txt格式文件
wmic process where name="a.exe" get executablepath|find /i /v "exec">path.txt
set /p a_path=<path.txt键入path.txt的路径为:C:\Program Files\test\a.exe
@echo off
for /f "skip=1 delims=" %%i in ('wmic process where "name='qq.exe'" get ExecutablePath') do (set qqpath="%%~dpi"&goto aa)
:aa
echo %qqpath%
pause