Posted 6 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.
Step 3: At the top of the code you pasted into notepad find these lines of code:
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
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.
@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:
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.