Close
Page 2 of 3 FirstFirst 1 2 3 LastLast
Showing results 11 to 20 of 22
  1. #11
    Member BobGnarly's Avatar
    Join Date
    Nov 2007
    Location
    Somewhere out there.
    Posts
    555

    Default

    Quote Originally Posted by 'Vicker',index.php?page=Thread&postID=84419#post84 419
    Sorry for the multiple posts... Something goofy is going on and it won't let me fix it.

    I downloaded and ran "Junction.exe". When I try to run the program, a black cmd-looking window flashes on the screen for a split second and then disappears. Nothing else happens.
    When I attempt to use the "MKLINK" command in cmd, I get an error message that says, "'MKLINK' is not recognized as an internal or external command, operable program or batch file."
    junction is a cmd line program, so it spawns a shell. you have to use it from a shell to provide the parameters that it requires. click the link i reference above and you can see an example of how to use it.

    as far as mklink not working, hmm, not sure on that. what version of windows are you running?
    No matter where you go, there you are.

  2. #12
    Member Otlecs's Avatar
    Join Date
    May 2007
    Location
    EU-Aggramar, Alliance.
    Posts
    1367

    Default

    When I attempt to use the "MKLINK" command in cmd, I get an error message that says, "'MKLINK' is not recognized as an internal or external command, operable program or batch file."
    Ah, that just means Windows can't find the program. Do you know how to use shell ("DOS") commands?

    You need to fire up a command line prompt, then either make sure MKLINK is in your path, copy it to your current directory, or invoke it using the full path name (\fred\mklink <blah blah blah>).

    If you don't know how to use shell commands, post again and I'll give more details. Hopefully this and the other few meaningful posts won't have gotten lost in the now encouraged sea of "can't be bothered to read the Wiki" posts (again) by then.

    If you don't see a reply, feel free to drop me a PM.

  3. #13

    Default

    Your getting that error message because you are on XP. Symbolic links only work on vista (didn't read your whole question just saw symbolic link not xp). What you need to do is download Junction (from microsoft website). This is a really good forum topic about it PowerShell script to create symbolically linked (mklink) copies of WoW. Give it a read though. Junction is just like symbolic link, but it doesn't come already on xp you have to download it. It is a simple little app. I can't help you too much on it (i used symbolic not junction) but that thread should be good.

    Don't take this the wrong way. Try using the search function on Junction and then on Symbolic. There are not that many posts out there about it, so it shouldn't take you too long to learn how to use junction. I looked over the wiki on junction quick and it doesn't seem that good (again i said quick) so you might even have to google it.
    Aion:
    Azphel
    Dual Sorcerer (Medeia, Meddeia)
    1--------10---------20-x-------30---------40---------50

    Wow Horde retired
    Team 1: 1 pally and 4 shamTeam lvl 70
    Team 2: 1 DK and 1 Priest lvl 80

  4. #14
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    When I set mine up on one box, I copied everything to the alt folders and Junction Linked the "DATA" folder only, as that is the one that's 4-7GB. :P The rest is only a couple hundred MB so not a big deal.
    Now playing: WoW (Garona)

  5. #15

    Default

    It works! I got junction.exe to work! A few things that I had some trouble with but finally figured out that might be useful for someone else reading how to do this:

    1) As BobGnarly said, I needed to run junction.exe from cmd.

    2) Junction.exe doesn't like spaces in folder names. I had to rename my folders to not contain spaces. If anyone knows a way to get around this I'd be interested in knowing, but it works fine as it is so I'm satisfied.
    Firetree, Alliance.

    Adiabat (Prot Pally), Isochor (Holy Priest), Isobar (Frostfire Mage) <Retired at 80 during WotLK>

    Corpsebréw, Corpsebrèw, Corpsebrêw (3x Death Knight) <Retired at 80 during WotLK>

    Femtotank (Prot Warrior), Femtoheals (Disc Priest), Femtosummons (Demo Lock) <Active, 105>

  6. #16
    Member Otlecs's Avatar
    Join Date
    May 2007
    Location
    EU-Aggramar, Alliance.
    Posts
    1367

    Default

    Ah, good news indeed

    Junction.exe doesn't like spaces in folder names. I had to rename my folders to not contain spaces. If anyone knows a way to get around this I'd be interested in knowing, but it works fine as it is so I'm satisfied.
    Just quote the entire filename ("C:\Games\World of Warcraft Main\Interface", etc).

  7. #17

    Default

    Quote Originally Posted by 'Vicker',index.php?page=Thread&postID=84987#post84 987
    Junction.exe doesn't like spaces in folder names. I had to rename my folders to not contain spaces. If anyone knows a way to get around this I'd be interested in knowing, but it works fine as it is so I'm satisfied.
    Welcome to the world of programming. 2 things that you can do
    1) what they call camel. This is when you take out the spaces and cap the first letter of each word. ThisIsAnExampleOfCamel
    - Good, you get rid of the spaces
    - Bad, when you camel words that are only 1 letter. IAmAExample
    2) Replace " " with "_". This_Is_An_Example_Of_This
    - Good, when words that are only 1 letter .I_am_a_example. also you do not have to cap the first letter of the names
    - Bad, when you can only have a certain amount out letters
    Aion:
    Azphel
    Dual Sorcerer (Medeia, Meddeia)
    1--------10---------20-x-------30---------40---------50

    Wow Horde retired
    Team 1: 1 pally and 4 shamTeam lvl 70
    Team 2: 1 DK and 1 Priest lvl 80

  8. #18
    Member Otlecs's Avatar
    Join Date
    May 2007
    Location
    EU-Aggramar, Alliance.
    Posts
    1367

    Default

    2 things that you can do
    Or you could just enclose the whole name in double quotes - "This is not a Camel", which works perfectly

  9. #19

    Default

    Quote Originally Posted by 'Otlecs',index.php?page=Thread&postID=85227#post85 227
    2 things that you can do
    Or you could just enclose the whole name in double quotes - "This is not a Camel", which works perfectly
    True... keep forgetting that. Keep thinking in programming where you cannot have spaces and names can only be 16 in length.
    Aion:
    Azphel
    Dual Sorcerer (Medeia, Meddeia)
    1--------10---------20-x-------30---------40---------50

    Wow Horde retired
    Team 1: 1 pally and 4 shamTeam lvl 70
    Team 2: 1 DK and 1 Priest lvl 80

  10. #20

    Default

    I haven't read any of the other replies, but here's how I do it:

    - My multiboxing WoW installs will be inside D:\boxing\
    - I run four clients on the machine in question

    1. Create directories inside D:\boxing\ named wow1, wow2, wow3, wow4 and wow5.

    2. Do a fresh installation of WoW into D:\boxing\wow1\ (or copy your singleboxing installation into here)

    3. In directories wow[2345], I create the following subdirectories:
    - Data
    - Interface
    - WTF
    - WTF\Account

    4. From D:\boxing\ run 'junction.exe' as follows:
    Code:
    junction.exe wow2\Data wow1\Data
    junction.exe wow2\Interface wow1\Interface
    junction.exe wow2\WTF\Account wow1\WTF\Account
    5. Repeat the above replacing wow2 with wow[345].

    6. Copy only the files (not the subdirectories) from D:\boxing\wow1 into D:\boxing\wow[2345]

    Job done.

    Now I have five WoW installations, all sharing the same Data, Interface and Account subdirs. That's saved me about 32GB of disk space, greatly reduced disk thrashing while running multiple clients, and means that any addons I install will be automatically shared between all five clients. Also the profiles for each of my WoW accounts all reside in the same shared location, which makes it easier to back them up.

    When playing, I run the clients in wow[2345] and leave wow1 alone.

    When patch time comes, I run the client in wow1, let it update, then perform step 6 above again.

    Hope this helps.


    PS. The 'wow[2345]' notation is shorthand for 'wow2, wow3, wow4, wow5' in case that wasn't clear.
    Outland EU - Orc Shamans: Toth[aeiou]
    Al'Akir EU - Night Elf Hunters: Venatrix[aeiou]
    Core i7 920 - Intel DX58SO board - 6GB Corsair DDR3-1333 - GeForce GTX285 1GB - 2x Dell 2407FPW LCD
    Windows 7 Ultimate RC 64-bit - Keyclone

Similar Threads

  1. 5 installs - loading 5 wows off a single folder?
    By Method in forum New Multi-Boxers & Support
    Replies: 8
    Last Post: 11-11-2008, 01:58 PM
  2. multiple wow installs
    By bizcotti4 in forum Software Tools
    Replies: 5
    Last Post: 10-08-2008, 05:44 PM
  3. [Solution] Problems patching multiple WoW client installs (Vista)
    By Stabface in forum General WoW Discussion
    Replies: 8
    Last Post: 05-19-2008, 03:20 PM
  4. How to keep multiple client installs in sync
    By Buzzatronic in forum General WoW Discussion
    Replies: 6
    Last Post: 04-28-2008, 02:53 AM
  5. Multiple installs of WoW vs one install
    By Mannyman in forum General WoW Discussion
    Replies: 2
    Last Post: 07-15-2007, 06:20 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •