I decided to start up an additional account to dual box with my main. I had not done this since back in my EQ days. After doing a little reading I decided to go with HotKeyNet and Jamba. I got everything set up a couple of days ago and after nothing working at first I found that I had to run HotKeyNet as admin. I did so and everything worked great and I was able to play a little that night. Last night I got home from work and decided to get online. I fired everything up and again nothing worked. By this I mean that when I would hit a key, it showed that it worked fine on HotKeyNet but nothing worked on my other account. The WoW windows were also not renaming themselves. After messing with things for a while I decided to try running everything from a single wow install rather than two. Everything worked great after that. I would prefer to use two different installs of WoW so can someone take a look at my current script and see what needs to be fixed?

Code:
//================================================================// SAMPLE SCRIPT FOR TWO WOW'S ON ONE PC 
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file. 
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You 
// can change this if you want, just like you can change 
// everything else with HotkeyNet.) 
//
// Requires HotkeyNet build 147 or higher.
// 
// For more info, go to www.hotkeynet.com 
//================================================================


//-----------------------------------------------------------
// PRESS CTRL R TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY 
//-----------------------------------------------------------
<Hotkey ScrollLockOn Ctrl R>
    <SendPC local>
        <RenameWin "World of Warcraft" WoW1> 
        <RenameWin "World of Warcraft" WoW2> 


//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Command LaunchAndRename>
   <SendPC %1%> 
      <Run "C:\WoW1\WoW.exe" WoW1>
        <RenameTargetWin %2%>


//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
//-----------------------------------------------------------
<Hotkey ScrollLockOn Alt Ctrl L>
    <LaunchAndRename Local WoW1>
    <LaunchAndRename Local WoW2>


//-----------------------------------------------------------
// WoW LAUNCH AND RENAME SUBROUTINE
//-----------------------------------------------------------
//<Command LaunchAndRename>
//<SendPC %1%>
//<Run %1%>
//<RenameTargetWin %2%>


//-----------------------------------------------------------
// WoW LAUNCH HOTKEY
//-----------------------------------------------------------
//<Hotkey ScrollLockOn Ctrl Alt L>
//	<LaunchAndRename "C:\WoW1\Wow.exe" WoW1>
//		<LaunchAndRename "D:\WoW2\Wow.exe" WoW2>


//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES 
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 Local SendWinM WoW2>


//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
//-----------------------------------------------------------
<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<SendLabel w1, w2>
<Key %Trigger%> 


//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
// ADD MORE KEYS IF YOU WANT. 
//-----------------------------------------------------------
<MovementHotkey ScrollLockOn Space>
<SendLabel w1, w2>
<Key %Trigger%> 


//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
// THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU 
// WANT TO BROADCAST.
//-----------------------------------------------------------
<UseKeyAsModifier Oem3>


<Hotkey Oem3 ScrollLockOn LButton, MButton, RButton, Button4, Button5>
   <SendLabel w1, w2> 
      <ClickMouse %TriggerMainKey%>