Set the Preselected property if appropriate (relevant to
MigrateFeatureStates when implemented).
This commit is contained in:
parent
6957e4a0c2
commit
6999a04278
|
@ -2457,6 +2457,14 @@ static UINT SetFeatureStates(MSIPACKAGE *package)
|
|||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/* set the Preselected Property */
|
||||
static const WCHAR szPreselected[] = {'P','r','e','s','e','l','e','c','t','e','d',0};
|
||||
static const WCHAR szOne[] = { '1', 0 };
|
||||
|
||||
MSI_SetPropertyW(package,szPreselected,szOne);
|
||||
}
|
||||
|
||||
/*
|
||||
* now we want to enable or disable components base on feature
|
||||
|
|
Loading…
Reference in New Issue