How To Add Components To A Scripted Install
Article: 20000047
Applies to: Release 6.x
You may require additional component functionality or a driver update for your target servers that was not provided with RDP.
The component or driver may be added to the scripted install jobs to be installed after the operating system installation is complete.
To add a component to a Windows scripted install:
| 1. |
Add the component file to the
<InstallPath>\hpfeatures\yyyy\oem\components
directory on the Deployment Server where yyyy
is the operating system feature name.
|
| 2. |
Rename this file to include a unique identifier as part of the name as was done for other files in this directory.
For example, rename cp000001.exe to agent-cp000001.exe.
|
| 2. |
In the same directory, edit the install.cmd file to install the new component file and add to the cpresults value.
For example,
call :installsc agent
if %cpresult% geq 1 set /a cpresults=cpresults+1
|
To add a component to a Linux scripted install, add the component .tar.gz or .rpm file to the
<InstallPath>\hpfeatures\yyyy\oem\components
directory on the Deployment Server where yyyy
is the operating system feature name.
|