i want to find location of a process. how?
Moderator: DosItHelp
-
- Posts: 84
- Joined: 08 Sep 2010 10:25
- Location: Iran,Kashan
- Contact:
i want to find location of a process. how?
how to find out location of a file witch is running and I can see it in processes?
Re: i want to find location of a process. how?
You could use WMIC.
Regards
aGerman
Code: Select all
for /f "skip=1 tokens=*" %%i in ('wmic process where name^="firefox.exe" get ExecutablePath') do echo %%~dpi
Regards
aGerman