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 › MultiPlayer Game Hacks & Cheats › Combat Arms Hacks & Cheats › HShield automatic file mover - Batch Script

HShield automatic file mover - Batch Script

Posts 1–15 of 32 · Page 1 of 3
DI
Divine Will
Fix DC problem - Batch Script!
Just whipped this up real fast, it's a batch script to quickly move your *.dll's *.env's and *.exe's to a folder called Update2 inside your HShield folder. It detects if it needs to put them back as well, and does so.

Hope you find this usefull.
Also: To use this simply paste the text into notepad and save as a .bat file. Then just double click your new file.

Download >> http://www.*********.com/file/z3zgly <<

@echo off
echo Combat Arms HShield Patcher -- Divine Will
echo.
cd/
if exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveToUpdate2)
if not exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:NexonCombat ArmsHShield*.dll" "C:NexonCombat ArmsHShieldUpdate2"
move /y "C:NexonCombat ArmsHShield*.env" "C:NexonCombat ArmsHShieldUpdate2"
move /y "C:NexonCombat ArmsHShield*.exe" "C:NexonCombat ArmsHShieldUpdate2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:NexonCombat ArmsHShieldUpdate2*.*" "C:NexonCombat ArmsHShield"
pause>nul
goto end

:end
exit
#1 · edited 17y ago · 17y ago
DI
Divine Will
21 views and no one thought this was useful. Wow.

Well whatever its handy as shit.
#2 · 17y ago
GL
GladiatorLD
It is useful but most people don't know how to use information like this. Don't blame them for being idiots.
#3 · 17y ago
DR
dr1nkm1lk
Good post, very useful.
#4 · 17y ago
DI
Divine Will
Thank you both, and yes I feel sorry for the people who dont know how to paste something into notepad and save lol.

But oh well, thanks you two
#5 · 17y ago
FireRebel
FireRebel
This won't work for people who's drive isn't C will it? You should make it detect it's current drive, because mine is D. I don't know how to do this but here's a link that may help you. Script to detect current drive letter - Neowin Forums

Otherwise, very useful. Thanks.
#6 · 17y ago
Shark
Shark
There are a few errors.
Let me try to fix.
Code:
@echo off
echo Combat Arms HShield Patcher -- Divine Will --Edited by SnilNotSnail
echo.
cd/
if exist "C:Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveToUpdate2)
if not exist "C:Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:Nexon/Combat Arms/HShield*.dll" "C:Nexon/Combat Arms/HShield/Update2"
move /y "C:Nexon/Combat Arms/HShield*.env" "C:Nexon/Combat Arms/HShield/Update2"
move /y "C:Nexon/Combat Arms/HShield*.exe" "C:Nexon/Combat Arms/HShield/Update2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:Nexon/Combat Arms/HShield/Update2*.*" "C:Nexon/Combat Arms/HShield"
pause>nul
goto end

:end
exit
#7 · edited 17y ago · 17y ago
DI
Divine Will
Quote Originally Posted by SnilNotSnail View Post
There are a few errors.
Let me try to fix.
Code:
@echo off
echo Combat Arms HShield Patcher -- Divine Will --Edited by SnilNotSnail
echo.
cd/
if exist "C:Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveToUpdate2)
if not exist "C:Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:Nexon/Combat Arms/HShield*.dll" "C:Nexon/Combat Arms/HShield/Update2"
move /y "C:Nexon/Combat Arms/HShield*.env" "C:Nexon/Combat Arms/HShield/Update2"
move /y "C:Nexon/Combat Arms/HShield*.exe" "C:Nexon/Combat Arms/HShield/Update2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:Nexon/Combat Arms/HShield/Update2*.*" "C:Nexon/Combat Arms/HShield"
pause>nul
goto end

:end
exit
Didnt realize that C:\ was incorrect? Can you explain why please and thank you

Also, I'll give that a shot as well, that is.. detecting the drive.
#8 · 17y ago
Shark
Shark
I messed up too. Hold on....

Try this:
Code:
@echo off
echo Combat Arms HShield Patcher -- Divine Will -- Edited by SnilNotSnail
echo.
cd/
if exist "C:Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveToUpdate2)
if not exist "C:/Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:/Nexon/Combat Arms/HShield*.dll" "C:/Nexon/Combat Arms/HShield/Update2"
move /y "C:/Nexon/Combat Arms/HShield*.env" "C:/Nexon/Combat Arms/HShield/Update2"
move /y "C:/Nexon/Combat Arms/HShield*.exe" "C:/Nexon/Combat Arms/HShield/Update2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:/Nexon/Combat Arms/HShield/Update2*.*" "C:/Nexon/Combat Arms/HShield"
pause>nul
goto end

:end
exit
#9 · 17y ago
BB
bbeennnneett
write at the top to copy it into notepad and save it as a .bat file
#10 · 17y ago
Shark
Shark
He did.
One [hopefully] final revision:

Code:
@echo off
echo Combat Arms HShield Patcher -- Divine Will -- Edited by SnilNotSnail
echo.
cd/
if exist "C:Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveToUpdate2)
if not exist "C:/Nexon/Combat Arms/HShield/HSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:/Nexon/Combat Arms/HShield/HSInst.dll" "C:/Nexon/Combat Arms/HShield/Update2"
move /y "C:/Nexon/Combat Arms/HShield/HSUpdate.env" "C:/Nexon/Combat Arms/HShield/Update2"
move /y "C:/Nexon/Combat Arms/HShield/HSUpdate.exe" "C:/Nexon/Combat Arms/HShield/Update2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:/Nexon/Combat Arms/HShield/Update2/HSInst.dll" "C:/Nexon/Combat Arms/HShield"
copy "C:/Nexon/Combat Arms/HShield/Update2/HSUpdate.env" "C:/Nexon/Combat Arms/HShield"
copy "C:/Nexon/Combat Arms/HShield/Update2/HSUpdate.exe" "C:/Nexon/Combat Arms/HShield"
pause>nul
goto end

:end
exit
#11 · edited 17y ago · 17y ago
LI
littleindia70
whats the best place to put this

and do we double click it before running combat arms?
#12 · edited 17y ago · 17y ago
Shark
Shark
Code:
@echo off
echo Combat Arms HShield Patcher -- Divine Will -- Edited by SnilNotSnail
echo.
cd/
if exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveToUpdate2)
if not exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:NexonCombat ArmsHShieldHSInst.dll" "C:NexonCombat ArmsHShieldUpdate2"
move /y "C:NexonCombat ArmsHShieldHSUpdate.env" "C:NexonCombat ArmsHShieldUpdate2"
move /y "C:NexonCombat ArmsHShieldHSUpdate.exe" "C:NexonCombat ArmsHShieldUpdate2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:NexonCombat ArmsHShieldUpdate2HSInst.dll" "C:NexonCombat ArmsHShield"
copy "C:NexonCombat ArmsHShieldUpdate2HSUpdate.env" "C:NexonCombat ArmsHShield"
copy "C:NexonCombat ArmsHShieldUpdate2HSUpdate.exe" "C:NexonCombat ArmsHShield"
pause>nul
goto end

:end
exit
I think I finally got it.

I uploaded a rar with the .bat file in it.
#13 · 17y ago
LI
littleindia70
you made a really silly mistake the code is

@echo off
echo Combat Arms HShield Patcher -- Divine Will -- Edited by SnilNotSnail -- Littleindia70
echo.
cd/
if exist "C:\Nexon\Combat Arms\HShield\HSUpdate.exe" (goto moveToUpdate2)
if not exist "C:\Nexon\Combat Arms\HShield\HSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:\Nexon\Combat Arms\HShield*.dll" "C:\Nexon\Combat Arms\HShield\Update2"
move /y "C:\Nexon\Combat Arms\HShield*.env" "C:\Nexon\Combat Arms\HShield\Update2"
move /y "C:\Nexon\Combat Arms\HShield*.exe" "C:\Nexon\Combat Arms\HShield\Update2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:\Nexon\Combat Arms\HShield\Update2*.*" "C:\Nexon\Combat Arms\HShield"
pause>nul
goto end

:end
exit
#14 · 17y ago
LI
littleindia70
use this i think its right now

Try this:
Code:
@echo off
echo Combat Arms HShield Patcher -- Divine Will -- Edited by SnilNotSnail
echo.
cd/
if exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveToUpdate2)
if not exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveBack)
pause

:moveToUpdate2
echo Moving to update2
pause>nul
move /y "C:NexonCombat ArmsHShield*.dll" "C:NexonCombat ArmsHShieldUpdate2"
move /y "C:NexonCombat ArmsHShield*.env" "C:NexonCombat ArmsHShieldUpdate2"
move /y "C:NexonCombat ArmsHShield*.exe" "C:NexonCombat ArmsHShieldUpdate2"
pause>nul
goto end

:moveBack
echo Moving files back
pause>nul
cd/
copy "C:NexonCombat ArmsHShieldUpdate2*.*" "C:NexonCombat ArmsHShield"
pause>nul
goto end

:end
exit
#15 · 17y ago
Posts 1–15 of 32 · Page 1 of 3

Post a Reply

Similar Threads

  • Combat Arms REZ file Mover[Easy To use]By Zoom in Combat Arms Mod Discussion
    10Last post 16y ago
  • .REZ File MoverBy User1 in Combat Arms Mods & Rez Modding
    11Last post 16y ago
  • [Help]File MoverBy Cryptonic in Visual Basic Programming
    12Last post 15y ago
  • Some Fun Batch Scripts! (And one not so fun)By Fogest in General Hacking
    3Last post 15y ago
  • Making A Batch File In Visual BasicBy condor01 in Visual Basic Programming
    0Last post 18y ago

Tags for this Thread

#automatic#batch#file#hshield#mover#script