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 › [Help]Starting a process[solved]

Exclamation[Help]Starting a process[solved]

Posts 1–5 of 5 · Page 1 of 1
nathanael890
nathanael890
[Help]Starting a process[solved]
Hi guys. I need some help in starting a process...

I want to start a process with a parameter. but I didn't know what is the code to include...

A person just said this to me but I can't understand it...
Try concatenating all the SelectedPath, "/<process>", and the argument as one single string, and executing Shell with that string.

I usually had file error when I included full path to the file. I usually had to separate the file name and the full folder path, and include them in separate arguments.
what should be the vb Code for the parameter in order to launch the game???
I like to create a program for it so I want the codes for it....

I have tried this but it didn't work
Shell(FolderBrowserDialog1.SelectedPath + "/<process> <parameter>")
#1 · edited 16y ago · 16y ago
MJLover
MJLover
Quote Originally Posted by nathanael890 View Post
Hi guys. I need some help in starting a process...

I want to start a process with a parameter. but I didn't know what is the code to include...

A person just said this to me but I can't understand it...


what should be the vb Code for the parameter in order to launch the game???
I like to create a program for it so I want the codes for it....

I have tried this but it didn't work
Shell(FolderBrowserDialog1.SelectedPath + "/<process> <parameter>")
Using nextgen1's code:

Replace "yourfilename.exe" with your file name.
And "/update" with the arguments you want to pass.

[php]Dim newproc As System.Diagnostics.Process = Nothing
Dim ProcSnfo As New ProcessStartInfo
ProcSnfo.UseShellExecute = True
ProcSnfo.FileName = "yourfilename.exe"
ProcSnfo.Arguments = "/update"
newproc = System.Diagnostics.Process.Start(ProcSnfo) [/php]

I hope this will work.
#2 · 16y ago
Blubb1337
Blubb1337
Try

fbd = Folderbrowserdialog1.SelectedPath
Shell("""" & fbd & "\nameoffile.exe parameter""")

or else

Shell(fbd & "\nameoffile.exe parameter")
#3 · 16y ago
nathanael890
nathanael890
Quote Originally Posted by MJLover View Post
Using nextgen1's code:

Replace "yourfilename.exe" with your file name.
And "/update" with the arguments you want to pass.

[php]Dim newproc As System.Diagnostics.Process = Nothing
Dim ProcSnfo As New ProcessStartInfo
ProcSnfo.UseShellExecute = True
ProcSnfo.FileName = "yourfilename.exe"
ProcSnfo.Arguments = "/update"
newproc = System.Diagnostics.Process.Start(ProcSnfo) [/php]

I hope this will work.
Quote Originally Posted by Blubb1337 View Post
Try

fbd = Folderbrowserdialog1.SelectedPath
Shell("""" & fbd & "\nameoffile.exe parameter""")

or else

Shell(fbd & "\nameoffile.exe parameter")
Whoa.
Both of you guys helped instantly ^^

Thanks for your codes guys..
I even searched this codes at google nor yahoo but I didn't found even one..

My problem has been solved. ^^
#4 · 16y ago
NextGen1
NextGen1
Quote Originally Posted by nathanael890 View Post
Whoa.
Both of you guys helped instantly ^^

Thanks for your codes guys..
I even searched this codes at google nor yahoo but I didn't found even one..

My problem has been solved. ^^
Cause we Rock

/Solved
#5 · 16y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help]Kill Process[Solved]By iDrEwX in Visual Basic Programming
    12Last post 16y ago
  • [Help]Processes[Solved]By /b/oss in Visual Basic Programming
    9Last post 16y ago
  • [HELP]Start Process/program in ResourcesBy [Project Recon]Porhaxn in Visual Basic Programming
    9Last post 16y ago
  • [Help]How to start another program?[Solved]By Web-Designer in Visual Basic Programming
    11Last post 16y ago
  • Start on Process Start?By PlSlYlClHlO in C++/C Programming
    0Last post 17y ago

Tags for this Thread

None