Jan 19th, 2007, 10:08 PM
#1
Thread Starter
Addicted Member
How to hide a process from taskmgr?
how can i hide another processes from taskmgr?
Jan 19th, 2007, 10:38 PM
#2
Re: How to hide a process from taskmgr?
You can use TaskVisible property:
VB Code:
Private Sub Form_Load()
App.TaskVisible = False
End Sub
Jan 19th, 2007, 10:47 PM
#3
Thread Starter
Addicted Member
Re: How to hide a process from taskmgr?
Not my app's process. I mean another running process.
Jan 19th, 2007, 10:57 PM
#4
Re: How to hide a process from taskmgr?
Why do you need to hide a process?
VB/Office Guru™ (AKA: Gangsta Yoda ™ ® )
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it!
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6
Jan 19th, 2007, 11:08 PM
#5
Re: How to hide a process from taskmgr?
Originally Posted by
Gunner54
Not my app's process. I mean another running process.
Strange request... Why?
Jan 20th, 2007, 07:40 AM
#6
Thread Starter
Addicted Member
Re: How to hide a process from taskmgr?
because, im making anti-hacking protection for a game that people keep Dll Injecting if i hide it from taskmgr then it "should" hide it from the Injector.
Jan 20th, 2007, 08:32 AM
#7
Re: How to hide a process from taskmgr?
That would only work if everyone that plays the game, runs your app before the injector :S
Jan 20th, 2007, 05:04 PM
#8
Re: How to hide a process from taskmgr?
You could always disable Task Manager.
Keith
I've been programming with VB for 25 years. Started with VB4 16bit Pro, VB5 Pro, VB6 Pro/Enterprise and now VB3 Pro. But I'm no expert, I'm still learning.
Jan 21st, 2007, 06:22 PM
#9
Re: How to hide a process from taskmgr?
Well there is no sure fire way to hide your pocess from the process list, at least in VB.
VB/Office Guru™ (AKA: Gangsta Yoda ™ ® )
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it!
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6
Jan 21st, 2007, 06:52 PM
#10
Re: How to hide a process from taskmgr?
So disable Task Manager.
Attached Files
Keith
I've been programming with VB for 25 years. Started with VB4 16bit Pro, VB5 Pro, VB6 Pro/Enterprise and now VB3 Pro. But I'm no expert, I'm still learning.
Jan 21st, 2007, 06:57 PM
#11
Re: How to hide a process from taskmgr?
Hiding it from task manager will most likely not make any kind of effect on the injector process. Windows knows its running but "filtering" it out of the task manager will do nothing. You need to come up with something else to prevent injections, something in your code but vb may not be able to handle such needs.
VB/Office Guru™ (AKA: Gangsta Yoda ™ ® )
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it!
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6
Jan 22nd, 2007, 03:20 AM
#12
PowerPoster
Re: How to hide a process from taskmgr?
Disable Task Manager - Rev 2
http://www.vbforums.com/showpost.php...8&postcount=39
but they can still just search for the processes, regardless of it showing in the task manager or the task manager being locked.
Jan 22nd, 2007, 04:00 AM
#13
Re: How to hide a process from taskmgr?
Thats my point. If they are hacking your game then they will know how to enumerate the running processes themselves etc and still end up injecting your app. Again, the point is to come up with some other method of securing your game.
VB/Office Guru™ (AKA: Gangsta Yoda ™ ® )
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it!
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6
Jan 22nd, 2007, 08:33 AM
#14
Thread Starter
Addicted Member
Re: How to hide a process from taskmgr?
but its not taskmgr that i want to disable...
i just want to hide a process from the taskmgr's process list.
and YES this app does start before the game.
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Click Here to Expand Forum to Full Width