ShadowWalker
New Member
- Joined
- Oct 31, 2011
- Messages
- 10
- Reaction score
- 0
This may be useful to some of you so I figured I would share...
I got tired of clicking to update all of my HB SVN's so I configured a batch file to do it for me.
Just copy the code into a text file and save with .bat extension....ENJOY!
You can obviously change the examples I have here for your own
I got tired of clicking to update all of my HB SVN's so I configured a batch file to do it for me.
Just copy the code into a text file and save with .bat extension....ENJOY!
Code:
@echo on
FOR %%A IN (
"<your path here>\Bots\AutoAngler2"
"<your path here>\Bots\ProfessionBuddy"
"<your path here>\Default Profiles\Botanist Profiles"
"<your path here>\Default Profiles\Cava's Profiles"
"<your path here>\Default Profiles\Gatherit Profiles"
"<your path here>\Default Profiles\Kick's Profiles"
"<your path here>\Default Profiles\Lbnieses Profiles"
"<your path here>\Default Profiles\Super Yeti Profile Pack"
"<your path here>\Routines\CLU"
"<your path here>\Routines\FpsWare"
"<your path here>\Routines\TuanHAMonk"
) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:3
You can obviously change the examples I have here for your own
