I am trying to set a parameter while executing a package from command line
dtexec /f mypackage.dtsx /set \package.variables[$Project::MRNS_Database].Value;myvalue
I get the below error
The package path referenced an object that cannot be found: "\Project.Variables[$Project::MRNS_Database]". This occurs when an attempt is made to resolve a package path to an object that cannot be found.
In fact the MRNS_Database is actually a parameter set at project level (I can see this under Parameters in Package Explorer). Also I am not able to use the /Par switch as i am using /File option.
How do i set the parameter in this case from command line dtsexec?