Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

I still use it out of habit for launching different group setups, I stopped using any tiling or window management (other than borderless windows), and I stopped using cpu management due to mq2eqwire.Honest question. I six box, controlling the warrior while KissAssist runs the other 5. My machine has 32GB of memory so no performance issues. Would I gain anything by springing for ISBoxer?
TIA.
and I stopped using cpu management due to mq2eqwire.
I don't use broadcasting with isboxer since i have mq2 with mimicme and suchSA_krycek
Really? I didn't know you couldn't use it with EQWire. That's a bummer. I was going to look into using EQWire to take care of some of my lag problems.
yes 100%SA_krycek
Really? I didn't know you couldn't use it with EQWire. That's a bummer. I was going to look into using EQWire to take care of some of my lag problems.
But Sic said:
Sic you mind giving me some help here? Can you just disable cpu management in ISB and still use EQWire?
stickfigures=1
UseWASDDefault=1
GraphicsMemoryModeSwitch=1
APVOptimizations=TRUE
DisableWestBugFix=0
Sound=FALSE
CPUAffinity0=-1
CPUAffinity1=-1
CPUAffinity2=-1
CPUAffinity3=-1
CPUAffinity4=-1
CPUAffinity5=-1

$IS = "$env:InnerSpace\InnerSpace.exe"
$MQ2 = "$env:MQ2\MacroQuest2.exe"
$Run1 = Get-Process -Name InnerSpace -ErrorAction SilentlyContinue
$Run2 = Get-Process -Name MacroQuest2 -ErrorAction SilentlyContinue
if($Run1 -eq $null) {Start-Process -FilePath $IS -WindowStyle Minimized}
if($Run2 -eq $null) {Start-Process -FilePath $MQ2 -verb RunAs -WorkingDirectory $env:MQ2}
Start-Sleep -s 3
ForEach ($n in 1..32) {
Start-Process -FilePath $IS -Verb RunAs -ArgumentList "run isboxer -launchslot `"WorkHorses`" $n"
Start-Sleep -s 1
}
Thanks SA...kinda backs up how I feel about it. And Sic? thanks for the detail. That is pretty much how I have things setup right now without the EQWire. I was going to check into EQWire because I have started to notice some lag when I have more than 6 characters logged in. Especially in PoK.
gSe7eN
I run Windows 7 still, and I know nothing about Windows PS. I am not even sure whether I have it installed or not lol. Will this work with W7? Because your right, lack of speed is the price you pay for using ISB. Especially the login process. I sure do like the concept of speeding that process up. And last thing, how do you execute the workhorses.ps1: file, and where do you store that file to begin with.
invoke-command -filepath c:\Path\To\WarTeam.ps1 (though you might need to add -ExecutionPolicy BysPass to that command. Additionally, & "C:\Path To\MyPalTeam.ps1" may also work. I explained in some detail in the first post of the above link what PowerShell is and what not. I also use PowerShell ISE rather than just the console since I can edit my scripts on the fly (with IntelliSense!) and run them.$IS = "$env:D:\games\InnerSpace\InnerSpace.exe"
$MQ2 = "$env:D:\games\MQ2\MacroQuest2.exe"
$Run1 = Get-Process -Name InnerSpace -ErrorAction SilentlyContinue
$Run2 = Get-Process -Name MacroQuest2 -ErrorAction SilentlyContinue
if($Run1 -eq $null) {Start-Process -FilePath $IS -WindowStyle Minimized}
if($Run2 -eq $null) {Start-Process -FilePath $MQ2 -verb RunAs -WorkingDirectory $env:MQ2}
Start-Sleep -s 3
ForEach ($n in 1..6) {
Start-Process -FilePath $IS -Verb RunAs -ArgumentList "run isboxer -launchslot `"Rng Shm Pal Brd Ber Wiz`" $n"
Start-Sleep -s 1
invoke-command -filepath d:\games\mq2\6boxmelee.ps1 also I tried the -ExecutionPolicy BysPass but that didn't execute either. I tried it without the -filepath and not successful. So I am relatively sure my command line is incorrect. I admit I really have no idea what the syntax should be.
[Invoke-Command], ParameterOk I tried...but I just don't speak "code" very well at all, never have had an aptitude for it. Here is what I got so far. Btw it IS Version 2 of Powershell. I think I have most of it right as far as the names of the profile and # of characters to load, not sure about the path's and where to put that info at.
Filename is: 6boxmelee.ps1
Code:$IS = "$env:D:\games\InnerSpace\InnerSpace.exe" $MQ2 = "$env:D:\games\MQ2\MacroQuest2.exe" $Run1 = Get-Process -Name InnerSpace -ErrorAction SilentlyContinue $Run2 = Get-Process -Name MacroQuest2 -ErrorAction SilentlyContinue if($Run1 -eq $null) {Start-Process -FilePath $IS -WindowStyle Minimized} if($Run2 -eq $null) {Start-Process -FilePath $MQ2 -verb RunAs -WorkingDirectory $env:MQ2} Start-Sleep -s 3 ForEach ($n in 1..6) { Start-Process -FilePath $IS -Verb RunAs -ArgumentList "run isboxer -launchslot `"Rng Shm Pal Brd Ber Wiz`" $n" Start-Sleep -s 1 }
And here is the command line:invoke-command -filepath d:\games\mq2\6boxmelee.ps1also I tried the -ExecutionPolicy BysPass but that didn't execute either. I tried it without the -filepath and not successful. So I am relatively sure my command line is incorrect. I admit I really have no idea what the syntax should be.
and this is the result:
Invoke-Command : Parameter set cannot be resolved using the specified named par
ameters.
At line:1 char:15
+ invoke-command <<<< -filepath d:\games\mq2\6boxmelee.ps1
+ CategoryInfo : InvalidArgument: :-)) [Invoke-Command], Parameter
BindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,Microsoft.PowerShell.Comma
nds.InvokeCommandCommand
I really don't mean to waste your time on a complete noob, but can you set me on the right path please?
$IS = "D:\games\InnerSpace\InnerSpace.exe"
$MQ2 = "D:\games\MQ2\MacroQuest2.exe"
$Run1 = Get-Process -Name InnerSpace -ErrorAction SilentlyContinue
$Run2 = Get-Process -Name MacroQuest2 -ErrorAction SilentlyContinue
if($Run1 -eq $null) {Start-Process -FilePath $IS -WindowStyle Minimized}
if($Run2 -eq $null) {Start-Process -FilePath $MQ2 -verb RunAs -WorkingDirectory D:\games\MQ2\}
Start-Sleep -s 3
ForEach ($n in 1..6) {
Start-Process -FilePath $IS -Verb RunAs -ArgumentList "run isboxer -launchslot `"Rng Shm Pal Brd Ber Wiz`" $n"
Start-Sleep -s 1
}
What is Gummybear mode?everything turned to gummybear mode
I posted more EQ related scripts over in that thread linked above if you're interested. Obviously they're not plug and play and will need tweaking, but perhaps you'll find them useful.Powershell : wow. Works great!
I will take a look. I have NO clue about programming or anything else and I was able to get your script running after learning HOW to set up a script, plugging in your post and then altering it to point to MY files. Ty again.
All I use isboxer for is the window layout. I let MQ2eqwire handle CPU and FG/BG fps and I don't use any of the actual boxing features of isboxer like broadcasting. All that gets disabled. I have the main window full screen with small windows aligned at the top left for my other characters. Each character has his own slot so I always know where to click to get the character I want, I also have small namebars above the window to remind myself who is who. When you click on one of the small windows, the main screen switches to that character and the one that was there previously moves to it's home in the small window group. The switch is instant. isboxer will also launch your entire group together, or whichever slot you want. It's a great piece of software when you take the time to get things arranged properly.
![]()
