Multi IMVU Client Launcher v2

DataMine
by DataMine · 33 posts
5 years ago in Batch
Posted 5 years ago · Author
This is an updated version of my Multi Client Launcher. This new version uses batch functions to reduce duplicate code and so is half the size of the first version.

With this script you can have multiple clients installed and have an easy to use menu to pick which one you want to open all in 1 shortcut on your desktop.


Instructions
Step 1: Read my tutorial and follow the first 4 steps: How to install more than 1 IMVU client


Step 2: Once you have the clients installed that you want, copy the code below into a new text file in notepad.

Code
@echo off

SET _CLIENT1=
SET _CLIENT2=
SET _CLIENT3=

:Options
cls
echo:
echo Select Client
echo:
echo 1) %_CLIENT1%
echo 2) %_CLIENT2%
echo 3) %_CLIENT3%
echo 4) Exit
echo:
set /p input=

if /I "%input%" == "1" (
   set LAUNCHER=%APPDATA%\IMVUClient-%_CLIENT1%\IMVUClient.exe
   set NAME=IMVUClient-PRB
)

if /I "%input%" == "2" (
   set LAUNCHER=%APPDATA%\IMVUClient-%_CLIENT2%\IMVUClient.exe
   set NAME=IMVUClient-T3DE
)

if /I "%input%" == "3" (
   set LAUNCHER=%APPDATA%\IMVUClient-%_CLIENT3%\IMVUClient.exe
   set NAME=IMVUClient-Lite
)

if /I "%input%" == "4" (
   goto :exit
)

call :LoadClient %LAUNCHER%, %NAME%

:LoadClient
set APPDATA=%APPDATA%\%~2
"%~1"
goto :Exit

:Exit
exit


Step 3: At the top of the code you pasted into notepad find these lines of code:
Code
SET _CLIENT1=
SET _CLIENT2=
SET _CLIENT3=


Step 4: In notepad, after the equal signs type the names of the clients you created in step 1.

Step 5: Click file then save as. In the save dialog name the file Launch IMVU.bat and make sure in the save as type drop down you select all files. Click Save.

You're done. Now when you open the file you just created a window will open asking you to pick which client you want to open. Select the client you want by pressing the number key that corresponds to the number next to the client in the menu.


Notes
  • You can have as many clients as you want. The code is set up for 3 clients but you can add and remove as many as you like.
  • Works on Windows 7, Windows 8 and Windows 10.
Posted 5 years ago
Nice tutorial!
We can use sandboxie too to launch multiple client. There is a free version that allow to launch 2 client at the same time.
https://www.sandboxie.com/
Hope I helped people too :p
Posted 5 years ago
Soo can i use the PRB Client 2x at the same time ?
Posted 5 years ago
Following Both
viewtopic.php?f=140&t=8873
viewtopic.php?f=134&t=12656&p=155698
I haven't been able to successfully open two launchers
Am I doing something wrong here?
I have IMVU Lite v36 , v37 and PRB installed
Labelled bat files made and everything but it still continues to only open up one client?
Posted 5 years ago · Author
BeMySaneFriend wrote:
Following Both
viewtopic.php?f=140&t=8873
viewtopic.php?f=134&t=12656&p=155698
I haven't been able to successfully open two launchersAm I doing something wrong here?I have IMVU Lite v36 , v37 and PRB installed
Labelled bat files made and everything but it still continues to only open up one client?


@BeMySaneFriend
This isn't for opening multiple clients at once. This is for having multiple clients installed and having an easy way to launch the one you want.
Posted 5 years ago
wow this actually pretty kool @DataMine i appreciate it man
Posted 5 years ago
nice might try it later today
Posted 5 years ago
Omg I need this. So that my laptop can actually stop burning me alive.
Posted 4 years ago
Nice sounds like something intersting to try as well ...... i use sandboxie at times

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT