i want to find location of a process. how?
Posted: 15 Mar 2012 13:06
how to find out location of a file witch is running and I can see it in processes?
A Forum all about DOS Batch
https://www.dostips.com/forum/
Code: Select all
for /f "skip=1 tokens=*" %%i in ('wmic process where name^="firefox.exe" get ExecutablePath') do echo %%~dpi