I have some notes that may be useful to you.
--------------------------------------------------------------------------
You can run the Sunset installation program with command line
switches that allows you to extract the files, so you can get to
setup.exe and avoid any autorun.inf problem.
Put the USMoneyDlxSunset.exe (or BIZ) into a subfolder, such as
"My Documents" or "Documents. Using a CMD window, CD to that folder,
then run the following using the full path, not a relative path:
USMoneyDlxSunset.exe /C /T:"C:\Users\<your name>\Documents\Sunset"
or
USMoneyDlxSunset.exe /C /T:"%USERPROFILE%\Documents\Sunset"
This will extract all the files into a newly made subfolder
(Sunset). You may get a pop-up at the end that warns you that the
program may not have installed correctly. Cancel that dialog.
Now you can run Sunset\mnyinst.exe to install, or using Windows Explorer,
double-click mnyinst.
Following is a variation of that method of doing that with either a batch
file run from the folder, your documents folder in this example,
containing USMoneyDlxSunset.exe, or a list of commands that you can paste
into a command window that you have used cd to change to the
directory/folder that contains the USMoneyDlxSunset.exe file.
===================begin alt_inst.bat=======================
cd %USERPROFILE%\*documents
USMoneyDlxSunset.exe /C /T:%TEMP%\Sunset
cd %TEMP%\Sunset
mnyinst
==============end================================
Here is a description of what the four commands are doing:
1. switch the command window to your documents folder. That way the
USMoneyDlxSunset.exe will be accessible to run. CD stands for Change
Directory. Directory is another word for folder.
2. do the extraction command putting the files in a new folder within your
temp folder.
3. switch to that new folder. That new folder has the setup.exe file as
well as the other files needed for the install.
4. run mnyinst.exe or setup.exe to do the Money Plus Sunset install.
For this purpose you do not have to type the .exe part, There is at
least one case where mnyinst.exe worked and setup.exe did not. If it
asks if you want to quit, say no.
==================================================