Click here to Skip to main content
15,897,090 members
Articles / Programming Languages / C++

Extending Task Manager with DLL Injection

Rate me:
Please Sign up or sign in to vote.
4.62/5 (25 votes)
19 May 20054 min read 165.5K   3K   106  
How to extend the features of Windows Task Manager using DLL injection.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TaskExApp", "TaskExApp.vcproj", "{80D322A8-8EA6-456E-AAC6-63A808E7AB4F}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "InstallTaskHook", "..\InstallTaskHook\InstallTaskHook.vcproj", "{3F4FE51E-BCD9-45E5-9C4B-B616643AE899}"
	ProjectSection(ProjectDependencies) = postProject
		{2F3E092E-BCED-4311-84F9-40303A2ACD17} = {2F3E092E-BCED-4311-84F9-40303A2ACD17}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TaskExHook", "..\TaskExHook\TaskExHook.vcproj", "{2F3E092E-BCED-4311-84F9-40303A2ACD17}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{80D322A8-8EA6-456E-AAC6-63A808E7AB4F}.Debug.ActiveCfg = Debug|Win32
		{80D322A8-8EA6-456E-AAC6-63A808E7AB4F}.Debug.Build.0 = Debug|Win32
		{80D322A8-8EA6-456E-AAC6-63A808E7AB4F}.Release.ActiveCfg = Release|Win32
		{80D322A8-8EA6-456E-AAC6-63A808E7AB4F}.Release.Build.0 = Release|Win32
		{3F4FE51E-BCD9-45E5-9C4B-B616643AE899}.Debug.ActiveCfg = Debug|Win32
		{3F4FE51E-BCD9-45E5-9C4B-B616643AE899}.Debug.Build.0 = Debug|Win32
		{3F4FE51E-BCD9-45E5-9C4B-B616643AE899}.Release.ActiveCfg = Release|Win32
		{3F4FE51E-BCD9-45E5-9C4B-B616643AE899}.Release.Build.0 = Release|Win32
		{2F3E092E-BCED-4311-84F9-40303A2ACD17}.Debug.ActiveCfg = Debug|Win32
		{2F3E092E-BCED-4311-84F9-40303A2ACD17}.Debug.Build.0 = Debug|Win32
		{2F3E092E-BCED-4311-84F9-40303A2ACD17}.Release.ActiveCfg = Release|Win32
		{2F3E092E-BCED-4311-84F9-40303A2ACD17}.Release.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I live in the Nothern Virginia/Washington D.C. area. I have been working in the software industry since 1995. My skills are primarily in C++ and Java on Windows and Unix platforms but I also work with C# and some other programming languages (even PL/I and COBOL when necessary!).

Check out my software web site: http://www.dreamsyssoft.com

Comments and Discussions