I am planning to deploy a SSIS package on the production server using the command line prompt. I am executing the following :
DTEXEC.exe /FILE "C:\SSISPackages\Rewards\ExcelMasterToRewardsExcel.dtsx"
/DECRYPT ssis
/CHECKPOINTING OFF
/REPORTING EWCDI
/SET "\PACKAGE.VARIABLES
[varExcelFilePath_Master]";"D:\SSIS\64bit\MIS_DownloadScheduler2012-11-29-07-00-03.xls"
The problem is that I have another variable [varOutPutExcel]
which is an expression variable which would take [varExcelFilePath_Master]
and append datetime.
But How do I set this variable in the command prompt??