Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [Question] Running the program without being found at the task manager

[Question] Running the program without being found at the task manager

Posts 1–13 of 13 · Page 1 of 1
nathanael890
nathanael890
[Question] Running the program without being found at the task manager
Is there any codes where the program can't be seen in the task manager process tab?

I'm creating a program which is to move files without the program getting closed.
If I will release my program found at the process tab of task manager, My method will be found.

Any Idea guys?
#1 · 16y ago
Venum66
Venum66
Bassicaly you want to hide it from task manager?
#2 · 16y ago
Venum66
Venum66
Sub hideme ()
'This hides this program so that it doesn't
'appear in the task list.It thus prevents
'the user from setting focus on this program
'by using Alt-Tab or the Task Manager

Dim Handle As Integer
Dim WindowName As String

WindowName = App.Title
Const SW_Hide = 0

Handle = FindWindow(0&, WindowName)
X% = ShowWindow(Handle, SW_Hide)

End Sub
Hope It Helps
#3 · 16y ago
Zoom
Zoom
Hmm...

I think you can do it in vb6 but im not sure in 2008/2010.

Get next and see if he can answer it.
#4 · 16y ago
Venum66
Venum66
hejsan, do u think my code will work?
#5 · 16y ago
nathanael890
nathanael890


codes aren't declared.

I didn't know why..
#6 · 16y ago
Venum66
Venum66
Hmm, i dunno then dude. i dont think u can do it in vb8, If i can remember i think u can in vb6 tho?.. hmm dunno sorry dude
#7 · 16y ago
nathanael890
nathanael890
My friend uses vb6 to create programs. but I use vb8. so the code helps from my friend.. [that is why I pressed thanks.]

but I still need the vb8 code for it. ^^

[I had just mixed up. ^^]
#8 · edited 16y ago · 16y ago
Venum66
Venum66
wat the code i gave u works on vb6 but not vb8?
#9 · 16y ago
NextGen1
NextGen1
VenumC&P(ed) vb6 code the best way to make it hide is making your application a Windows Service, which I explained in detail, I think it is in the snippets vault, if not I will try and locate it.

------I will be honest though, I would like to know what you are doing this for?-------


#10 · edited 16y ago · 16y ago
KI
kilert
the methods 'FindWindow' and 'ShowWindow' are in the user32.dll lib
make an import of the methods to your program and it will work
#11 · 16y ago
WT
wtfiwantthatname
It will still show up in the process list. Not active windows list with that code. You need to read in the process manager list and simply remove the process you want(Simple code). Or modify the Flink and blink entries.
#12 · 16y ago
NextGen1
NextGen1
yeah, What are you guys talking about......? Findwindow has NOTHING to do with the task manager .....

@wtf
Simple, but didn't share the code?

I wrote a read task manager tut, but again, not even relevant.

To remove you will A. need API or B, have your application be a webserver,

X.hideprocess (application.hideprocess) no longer works (post vb6)

Originally I was going to attempt a name change (change the application name to "" [quotes with nothing in it] and the application will not show in the task manager, but I feel uncomfortable about discussing potentially malicious applications, so /Closed

Reasons as stated above, plus user has PM(ed) me.
#13 · 16y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • How To Run: The Perx Injector without D/CBy vietboiaaron in Combat Arms Hacks & Cheats
    8Last post 17y ago
  • [Question] How do you run a program?By Gasps Its Michael Jackson in C# Programming
    5Last post 15y ago
  • Mods without being the host?By winberg in Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    5Last post 15y ago
  • [Help]Sending text to a program, without having it on the foreground via hotkeyBy Withoutwings in Visual Basic Programming
    12Last post 15y ago
  • "Unable to run the game due to the client file being currupted."By darkaneudy in Combat Arms Help
    14Last post 15y ago

Tags for this Thread

None