Contents tagged with Windows
-
Image File Execution Options
Every now and than while debugging I need to either determine when a dll/module is loaded or need to attach a debugger to a process at startup that is started outside a debugger. I know there are settings that exist to do this but I always seem to forget exactly what they are. So for future reference here the registry entries.
-
Run++
I've finally got around to publishing a new release of Run++. There are a number of changes since the last time. The biggest items being:
-
Open external links in new tab for IE 7 beta
PetKnep wrote:
-
Using WMI to monitor process creation, deletion and modification in .NET
WMI is a powerful tool and I have just recently discovered some of its power. Previously I though the only way to detect process creation was by creating a windows hook but now I know it is fairly simple to due with .NETÂ using the Windows.Management namespace. Below is simple ProcessWatcher class that has events that are triggered when a process is created, deleted or modified. Enjoy!