This simple code will check to see if IMVU exists and if it does, run it.
import os
import subprocess
#Define IMVU client location
clientpath = os.environ['APPDATA'] + "\IMVUClient\IMVUClient.exe"
if os.path.isfile(clientpath):
try:
subprocess.call(clientpath)
except IOError as e:
print(e)
input()
To use this code, download and install python 3 from here:
http://www.python.org/download/After that, you have 2 options. 1) You can open IDLE (Python GUI) and paste the code in and just run it. You can also save the script to be used again. 2) You can open a text editor and paste the code in there and save it as "Run IMVU.py". Then you can just double click on the file to launch it.