You can do something like this in config
PRE_APP_QUIESCE_CMD01=echo %CONFNAME
PRE_APP_QUIESCE_CMD02=echo %CONFDIR
CONFNAME = profile
CONFDIR = config directoy
On a single line you can only reference one variable with % so doing echo "%CONFNAME %CONFDIR" wouldnt work.
Passing the %CONFNAME and %CONFDIR in as CLI arguments wont work unfortunately since they are not set till run time.
Regards,
Keith