Yes that's the same as well. I've been looking at all properties here:
http://msdn.microsoft.com/en-us/library/aa370905(VS.85).aspxThe nearest I've come to is/originaldb="[OriginalDatabase]" and using it in my code like this:
protected override void OnBeforeInstall(IDictionary savedState){
base.OnBeforeInstall(savedState);
StringDictionary myStringInput = this.Context.Parameters;
if (myStringInput != null){
foreach (DictionaryEntry d in myStringInput){
if (d.Key.ToString() == "OriginalDB"){
if (d.Value.ToString().Contains("Setup1")){
}
}
}
}
}