Paint Shop Pro 9
#1
Posted 22 November 2004 - 05:09 AM
ECHO.
ECHO Installing Jasc Paint Shop Pro 9.0
ECHO Please wait...
start /wait %systemdrive%\Install\Applications\PaintShopPro\PSP9.msi /qn
ECHO Installing Jasc Animation Shop 3
ECHO Please wait...
start /wait %systemdrive%\Install\Applications\AnimationShop\AnimationShop3.msi /qn
This will install Paint Shop Pro 9 unattended sucessfully for the user who runs the unattended command (Administrator in my case) but as soon as I log on to the system as another user, Paint Shop Pro says that the program shortcuts will only work for installed programs, but the program exists...
Can someone please help me, because this is very frustrating..
#2
Posted 22 November 2004 - 05:28 AM
]
MSI places shortcuts in the local user profile or all users profile based on the type of installation being performed. In an interactive installation, checking the box to specify the installation is intended for all users of a computer will dictate this placement. From the command line, you may dictate this by setting the public property ALLUSERS.
MSIEXEC.EXE /I MyPackage.msi
When no value is specified the application is installed "Per User" placing shortcuts in the current user profile.
MSIEXEC.EXE /I MyPackage.msi ALLUSERS=1
This installs shortcuts to the "All Users" profile, only administrators will be able to install the shortcuts in this way.
MSIEXEC.EXE /I MyPackage.msi ALLUSERS=2
For users, this will install the shortcut in the current user profile, for administrators, this will still install the profile for "All Users". As an administrator, if you wish to install the shortcuts in your own local profile, do not specify a value for the ALLUSERS property.
This public property is not set by default, but if you wish to dictate a consistent value for this property in the packages you create, edit the default MSI template in your MSI authoring/repackaging software.
So just add ALLUSERS=1 after /QN and it should work.
#3
Posted 02 April 2005 - 01:19 AM
#4
Posted 02 April 2005 - 02:56 AM
nujackk, on Apr 2 2005, 12:19 AM, said:
<{POST_SNAPBACK}>
You have to add a space, because those are different switches.



Help
Back to top









