What are these setup files?

  • Thread starter Thread starter Satoshi
  • Start date Start date
S

Satoshi

When I looked at program files, I see three types of exe files:

setup.exe
instamsia.exe
instmsiw.exe

Could someone explain what instamsia and instimsiw are for? Satoshi
 
If you are using WingMan software, you have found your culprit. Type the files names in Google Search and you'll find the answer to what you are looking for.
 
Sure.

Setup.exe is the setup bootstrapper - it starts the whole process, and loads
whatever is needed.

The instamsi files are for windows installer. If you don't have windows
installer on your system (if, for example, you are using an older operating
system) then these setup.exe will install windows installer first, and then
run the .msi file to install the software you intend to install in the first
place.

There are two versions: instamsia and instamsiw. The a stands for ASCII, and
the w stands for wide characters. You can think of a as meaning Windows 9x
and w as meaning Windows NT/2000/XP. The reason is that Windows 9x handles
all characters as single byte ASCII values, which is fine if you speak
English but not so great if you live in a country with a much larger
alphabet than will fit into a single byte, such as the far east countries.
NT/2000/XP handles all characters as Unicode characters (and if you provide
ASCII values, it will just convert them for you before using them), which
are two bytes long (hence the designation wide) and able to handle many many
more characters.

Once setup has determined that you have windows installer (either already
installed or installed by one of the instamsi files, depending on your OS)
then it runs the msi file(s) for your program, which invokes the windows
installer to provide a much more robust installation experience than letting
every software developer out there write their own installation package, and
more than likely doing a poor job of writing the uninstallation package.
 
Thanks Chris,

My computer is operating under WinXP pro. Which one should I select for
installing new programs.
I have been using "setup.exe". Satoshi
 
Use setup.exe - the only reason you would ever need to run instamsixxx is if
you don't have Windows Installer on your system, and setup.exe will
determine this for you, either running it if it needs to, or skipping it if
you already have it. (Windows Installer is built in to XP Pro also.)
 
Back
Top