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 › Coders Lounge › Need help with Scripting Command Prompt

Thumbs upNeed help with Scripting Command Prompt

Posts 1–4 of 4 · Page 1 of 1
XA
Xander_Burton
Need help with Scripting Command Prompt
What I am trying to do is...

I want to make some kind of Command prompt FILE...

Where there is a menu... Where it asks what I would like to open.
After I have typed the keyword, it should return to it's start state.

So I can type ex:

So I can type in a Certain keyword "EX" "notepad" And it will open notepad(which is already coded into Command Prompt by Windows)

I want to add more commands, such as:

Browser(Opens Google Chrome)
CSGO(Opens Counter-Strike: Global Offensive
Steam(Opens Steam)

I need some one who can teach me from scrach, I have looked every where with no luck.
#1 · 8y ago
KA
Kappatos
Since u want to avoid cmd one's,then try with C or Python.
Google or pay someone if u cant use google properly
#2 · 8y ago
PurpleOldMaN
PurpleOldMaN
You could just build a cpp program, pin the program to task bar and there you go, just download code::blocks and I bet you can find some sort of tutorial because theres tuts for everything for that language
#3 · 8y ago
Hell_Demon
Hell_Demon


Code:
@echo off & setlocal
:restart
set /p commandToExecute=Command: 
call :determineCommand %commandToExecute%
exit /b

:determineCommand
if "%1"=="EX" call :execCommand %2
echo Invalid Command "%1".
goto :restart

:execCommand
if "%1"=="notepad" goto :startNotepad
if "%1"=="CSGO" goto :startCSGO
echo Invalid EX Parameter "%1".
goto :restart

:startNotepad
start "window title" "C:\Windows\notepad.exe"
goto :restart

:startCSGO
SHUTDOWN /p
goto :restart
You wanted a batch file right?
#4 · 8y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • I need help with a commandBy SeXZeFPS in Realm of the Mad God Private Servers Help
    0Last post 9y ago
  • I need help with transformation commandBy cooper001 in Vindictus Help
    2Last post 14y ago
  • Need help with scripting error.By No0bzDown in General Hacking
    0Last post 10y ago
  • Need help with scriptBy sharkeel in DayZ Help & Requests
    3Last post 13y ago
  • Need help with scripts.By Ganec in DayZ Help & Requests
    2Last post 13y ago

Tags for this Thread

None