- May
- 13,211
- 180
IF ISAPP works on conhost.exe and not on conhost. In contrast, it fails on dllhost.exe and works on dllhost. What's going on there?
Code:
v:\> tasklist | egrep "conhost|dllhost"
7976 conhost
3164 dllhost
v:\> if isapp conhost.exe echo yes
yes
v:\> if isapp conhost echo yes
v:\> if isapp dllhost.exe echo yes
v:\> if isapp dllhost echo yes
yes
v:\>