Deployment Solution lets you add drivers to the DeployAnywhere driver database that are required for client computers on which you want to install Windows OS or deploy a Windows image.
For more information, see the help topic Adding drivers to the DeployAnywhere database.
To add a complex driver where an .inf file points to some other .inf file, do the following:
@ECHO off
FOR %%i IN (C D E F G H I J K L N M O P Q R S T U V W Y Z) DO IF EXIST %%i:\Drivers\Symantec\NonCritical1 (
ECHO found drivers for DPInst at %%i:\Drivers\Symantec\NonCritical1
IF NOT EXIST %%i:\Drivers\Symantec\Retarget MD %%i:\Drivers\Symantec\Retarget
ECHO copying NonCritical1 folder to %%i:\Drivers\Symantec\Retarget\
XCOPY %%i:\Drivers\Symantec\NonCritical1 %%i:\Drivers\Symantec\Retarget\ /s /i /h /y /c /r
EXIT /B 0
)
ECHO no drivers for DPInst found at \Drivers\Symantec\NonCritical1
EXIT /B 1