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 › [Tutorial] Make a Program Updater!

[Tutorial] Make a Program Updater!

Posts 1–12 of 12 · Page 1 of 1
mnpeepno2
mnpeepno2
[Tutorial] Make a Program Updater!
This is pretty simple code.
This code is better than Ugleh's code, but respect that he thought of it 1st!
Materials:
VB 08 or 10
a web host with FTP (i used freehostia)
(optional) an FTP client (i used core FTP lite)

Procedure:
1. Get a web host.
2. (optional) get a FTP client
3. make a new project in VB.
4. make a text file with the code as:your build #
5. plan a name for the EXE
6. write it down! you will need it!
7. dont forget, PLAN A NAME!!! ITS A DIFFERENCE BETWEEN A SUCCESSFUL UPDATER AND AN UNSUCCESSFUL ONE!
8. Put text file in your debug folder
9. In load section:
Code:
My.Computer.Network.DownloadFile _
    ("http://www.yoursitehere.com/Update.txt", _
    Application.startuppath & "Update.txt")
10. Upload the EXE of your program
11. next...
Code:
if Application.startuppath & "textfilename.txt" >= Application.startuppath & "Update.txt"then
'code here
else
My.Computer.Network.DownloadFile _
    ("http://www.yoursitehere.com/exepath.exe", _
    Application.startuppath & "exepath.exe")
'more code if needed
12. Upload the text file with your build version, if your program was 1.2 and the text is 1.3 then it will update its self.
13. Done!

will add pics and more later!

End Result:
2 exes 2 txt files (also known as text files in this tut)
#1 · edited 16y ago · 16y ago
Blubb1337
Blubb1337
Going to try it out now and reporting it in a few mins if it's working :P

(It sure will lol)
#2 · 16y ago
mnpeepno2
mnpeepno2
NO ONE TEST THIS I FOUND AN ERROR!!!
#3 · 16y ago
NextGen1
NextGen1
There is no reason to code it, Vb.net has the ability to deploy and manifest a .exe with updates.

(decent tut though)

Just make it work......
#4 · edited 16y ago · 16y ago
XG
XGelite
this is a decent tutorial..

but like NextGen said, VS has that already built it.
#5 · 16y ago
NextGen1
NextGen1
Quote Originally Posted by XGelite View Post
this is a decent tutorial..

but like NextGen said, VS has that already built it.
Accomplish as much in as little code as possible, If something doesn't need to be complex , then save the time

Just a philosophy of mine.
#6 · 16y ago
Bombsaway707
Bombsaway707
Errm didnt Ugleh already post a TUT on this?
#7 · 16y ago
Blubb1337
Blubb1337
Quote Originally Posted by bombsaway707 View Post
Errm didnt Ugleh already post a TUT on this?

This code is better than Ugleh's code, but respect that he thought of it 1st!
Read his first post :P
#8 · 16y ago
Dreamer
Dreamer
Quote Originally Posted by mnpeepno2 View Post
NO ONE TEST THIS I FOUND AN ERROR!!!
wow just edit your fist post to tell us
#9 · 16y ago
mnpeepno2
mnpeepno2
Quote Originally Posted by killer66143 View Post
wow just edit your fist post to tell us
Wow, maybe you should stop spamming,

BTW, i did it for a reason you noob.
#10 · 16y ago
XG
XGelite
Quote Originally Posted by mnpeepno2 View Post

BTW, i did it for a reason you noob.
did what for a reason? o_0
#11 · 16y ago
mnpeepno2
mnpeepno2
so that people who dont read the 1st post read the next one down the list. -_-

Almost done

RIP My 4 GB USB (I got an 8 GB replacement XD)
#12 · 16y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • Should I make tutorials on making basic programs?By Pixie in Visual Basic Programming
    14Last post 16y ago
  • [Tutorial] Your first programBy akimoko in C++/C Programming
    10Last post 19y ago
  • Video tutorial: Making WarRock hack in Visual BasicBy Darky in Visual Basic Programming
    5Last post 17y ago
  • [Tutorial] Lottery Winning Program!By Grim09 in Visual Basic Programming
    7Last post 19y ago
  • [Video tutorial] Make your own css cheatsBy seren1ty in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    6Last post 19y ago

Tags for this Thread

None