|
floating layer default test box
Preparing Applications for unattended instalation
|
|
Without considering the behavior of individual applications during the installation process, the unattended chaining of tasks can be terminated prematurely. Applications that require a user response need to be identified and alternative setup parameters applied. The same problems apply to applications that require license keys or a reboot of the computer.
Here are a few example applications and how each has overcome these issues.
Adding VM Ware tools as an application
- Mount the windows.iso file.
- Expand the source files to a temporary directory:
- Setup /a and follow the prompts
Note: it is possible that not all the files needed are extracted to the necessary directories. There should be (along with the MSI file) two sub-directories; Program Files and System32. Copy these directories from the original installation CD (Windows.iso), and over write the directories extracted by the setup program.
- Within Deployment Workbench add an application and select the option to copy the source files.
- Use the installation command line:
- msiexec.exe /i "vmware tools.msi" /qn ADDLOCAL=ALL REBOOT="ReallySuppress" /log %tmp%vmtools.log
- Finally, either within any other applications listed in Deployment Workbench, create a dependency on the completed installation of the tools application, or assign the installations as synchronous or consecutive tasks.
Customizing Microsoft Office 2007 for an unattended installation.
- Open a command prompt and navigate to the Office source files.
- Run Setup /admin to start the customization tool.
- Select Create a new Setup customization for the following product: and highlight Microsoft Office Enterprise 2007.
- Scroll down to Licensing and user interface and enter the volume license key. (Currently, an evaluation version of Office 2007 can be downloaded from Microsoft for a 60 day trial).
- Check the I accept the terms in the License Agreement check box.
- Even if it is anticipated the customization will only be used for fully unattended installations, it is still worth leaving the Display level at Full. The duration of the installation is quite long and so displaying the installation splash screen will prevent the appearance of a “hung” process. However, to avoid disruption to the installation, check the No cancel check box.
- The selectable options under Features are very granular. It is worth spending time configuring these settings, for the environment and user community, to reduce installation time.
- Click File and Save As. Save the file with the Office source files, and name it appropriately, e.g. “MyOffice07.msp”.
- To run the customized installation use the syntax:
- setup.exe /adminfile MyOffice07.msp
|
▲Top of page
|
|