What Is The Best Way To Test A Package In A Locked-Down Environment?
What Is The Best Way To Test A Package In A Locked-Down Environment?
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
jaybee96
11 years ago
Posted by:
bkelly
22 years ago
Per-machine advertisement followed by installation by a normal user account is the most comprehensive test for this situation.
As an administrator use the following command line to advertise the application to the local machine:
msiexec.exe /jm package.msi ALLUSERS=1 /qb
Note: No package components will actually be installed, MSI will simply install the advertised shortcuts and icons, file types and extensions, COM class registration, and package installation information.
Next, logon with a normal user account and trigger the installation process by running the shortcut or via a file type association. The application should start and run with no problems at this point. Be sure to make changes to settings, toolbars, and other preferences- then exit and relaunch the application to ensure such information is capable of being retained in this security context.
As an administrator use the following command line to advertise the application to the local machine:
msiexec.exe /jm package.msi ALLUSERS=1 /qb
Note: No package components will actually be installed, MSI will simply install the advertised shortcuts and icons, file types and extensions, COM class registration, and package installation information.
Next, logon with a normal user account and trigger the installation process by running the shortcut or via a file type association. The application should start and run with no problems at this point. Be sure to make changes to settings, toolbars, and other preferences- then exit and relaunch the application to ensure such information is capable of being retained in this security context.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.