I use two .bat files for updating my honorbuddy files. One is for when HB relog (can't be updated while running)/profiles so I can see if \Quest Behaviors needs to be copied, the other is everything else that is on a set schedule. What I'm asking is does anyone know how to combine all the updates into a single queue window? As if you were to ctrl+click and highlight several folders then use update, when you do it this way there's not four, five, six... different windows.
I'm going to take a wild guess and say the directories need to be in a single update path/command.
Now this is my automated one with no clicking and windows appear momentarily, but if possible I want to combine these updates into a single window as well even though they already automatically close. I tried checking the TortoiseSVN appendix, but I'm no expert with batch files.
Code:
@echo off
FOR %%A IN (
"C:\Honorbuddy\HBRelog"
"C:\Honorbuddy\Kick's Profiles"
"C:\Honorbuddy\superyeti's Profiles"
"C:\Honorbuddy\thebrodieman's Profiles"
) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:0
I'm going to take a wild guess and say the directories need to be in a single update path/command.
Code:
@echo off
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Bots\BgBot" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Bots\Professionbuddy" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Bots\Tyrael" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Plugins\PimpMyGuild" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Plugins\TidyBags" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Plugins\Ultimate PvP Suite" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Routines\CLU" /closeonend:2
TortoiseProc.exe /command:update /path:"C:\Honorbuddy\Routines\Shapeshifter" /closeonend:2
Now this is my automated one with no clicking and windows appear momentarily, but if possible I want to combine these updates into a single window as well even though they already automatically close. I tried checking the TortoiseSVN appendix, but I'm no expert with batch files.