N Nikolay Petrov Jul 1, 2005 #1 How to monitor the startup of processes and eventualy stop them to run? TIA
K Ken Tucker [MVP] Jul 1, 2005 #2 Hi, You will need to create a windows hook for that. http://msdn.microsoft.com/msdnmag/issues/02/10/CuttingEdge/ Ken
Hi, You will need to create a windows hook for that. http://msdn.microsoft.com/msdnmag/issues/02/10/CuttingEdge/ Ken
N Nikolay Petrov Jul 1, 2005 #3 Thanks Ken One porblem, the sample code is in C# and i have dificulties to convert it to VB .NET
H Herfried K. Wagner [MVP] Jul 1, 2005 #4 Nikolay Petrov said: One porblem, the sample code is in C# and i have dificulties to convert it to VB .NET Click to expand... Converting code between .NET programming languages <URL:http://dotnet.mvps.org/dotnet/faqs/?id=languageconverters&lang=en>
Nikolay Petrov said: One porblem, the sample code is in C# and i have dificulties to convert it to VB .NET Click to expand... Converting code between .NET programming languages <URL:http://dotnet.mvps.org/dotnet/faqs/?id=languageconverters&lang=en>
N Nikolay Petrov Jul 1, 2005 #6 Herfried, According to this: http://support.microsoft.com/default.aspx?scid=kb;en-us;319524#3 I can't use global hooks, correct? I guess I need global hook to monitor process startup, right? So this is not possible .NET? Any workarounds?
Herfried, According to this: http://support.microsoft.com/default.aspx?scid=kb;en-us;319524#3 I can't use global hooks, correct? I guess I need global hook to monitor process startup, right? So this is not possible .NET? Any workarounds?
H Herfried K. Wagner [MVP] Jul 1, 2005 #7 Nikolay Petrov said: According to this: http://support.microsoft.com/default.aspx?scid=kb;en-us;319524#3 I can't use global hooks, correct? I guess I need global hook to monitor process startup, right? So this is not possible .NET? Click to expand... You are right. I suggest to use VC++ to implement the hook.
Nikolay Petrov said: According to this: http://support.microsoft.com/default.aspx?scid=kb;en-us;319524#3 I can't use global hooks, correct? I guess I need global hook to monitor process startup, right? So this is not possible .NET? Click to expand... You are right. I suggest to use VC++ to implement the hook.