
CODE: [Copy to clipboard]@echo off
for /f "tokens=2 delims= " %%a in ('tasklist^|findstr /i "notepad.exe"') do set pid=%%a
echo %pid%
pmh -Hide %pid%
CODE: [Copy to clipboard]@echo off
for /f %%a in ('wmic process where "name='notepad.exe'" get handle') do set pid=%%a
pmh -Hide %pid%
| 欢迎光临 中国DOS联盟论坛 (http://cndos.fam.cx/forum/) | Powered by Discuz! 2.5 |