Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I know the external exe name & location.
How will i block the external exe from my vb project???

please help me some proper instruction....
Posted
Comments
ZurdoDev 24-Feb-12 9:03am    
What are you trying to do? Block an exe?

If it's not an executable that your setup program installed, that's what I would call questionable practice, and even ill-advised.

But, you would have to create a thread to constantly enumerate the processes running on the machine, and when you detect the desired process, immediately close it down.
 
Share this answer
 
You can't block it from your code. Since you're code has no hooks into the Loader, you can't stop it from being executed.

Enumerating the process list is not really blocking the process since in order for it to show up in the list, it has to be running already.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900