This website uses cookies. By browsing this website, you consent to the use of cookies. Learn more.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
- Flexera Software Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- InstallChangeFolder Error 2731 Selection Manager n...
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Highlighted
farukhsharipov
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Jun 15, 2015
01:15 PM
InstallChangeFolder Error 2731 Selection Manager not initialized
Hi All
I created Basic MSI project and modified InstallWelcome dialog to navigate to Destination Folder.
During installation I click change and try to set different destination i get Error 2731 Selection Manager not initialized.
I haven't changed anything it's default empty Basic MSI project.
Why this is happening?
Steps to reproduce:
1. Create Basic MSI Project
2. Using Project Assistant go to "Installation Interview" select everything to no except "Do you want users to be able to modify the installation location?" select Yes
3. Click Run
4. Click Next on Install Welcome Screen
5. Click Change..
6. Select different folder and click OK
7. You should see error: Error 2731 Selection Manager not initialized.
I created Basic MSI project and modified InstallWelcome dialog to navigate to Destination Folder.
During installation I click change and try to set different destination i get Error 2731 Selection Manager not initialized.
I haven't changed anything it's default empty Basic MSI project.
Why this is happening?
Steps to reproduce:
1. Create Basic MSI Project
2. Using Project Assistant go to "Installation Interview" select everything to no except "Do you want users to be able to modify the installation location?" select Yes
3. Click Run
4. Click Next on Install Welcome Screen
5. Click Change..
6. Select different folder and click OK
7. You should see error: Error 2731 Selection Manager not initialized.
5 Replies
hidenori
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Jun 15, 2015
02:51 PM
Re: InstallChangeFolder Error 2731 Selection Manager not initialized
Make sure that you have a component that is associated with a feature in your setup project. Lacking components in your installation can cause this error.
Hope that helps.
Hope that helps.
farukhsharipov
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Jun 16, 2015
09:50 AM
Issue persist
What components, have you tried steps that I listed to reproduce the issue?
hidenori
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Jun 16, 2015
10:29 AM
Re: InstallChangeFolder Error 2731 Selection Manager not initialized
If you add a feature and a component in the Setup Design view under the Installation Designer and then rebuild your release, the Error 2731 should go away.
Evan_Border
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Jun 16, 2015
10:29 AM
Re: InstallChangeFolder Error 2731 Selection Manager not initialized
farukhsharipov wrote:
What components, have you tried steps that I listed to reproduce the issue?
Windows installer requires that you have at least one component. If you add something (anything, such as a file, folder, registry entry, etc.) InstallShield will add a component, which will prevent the error message that you are seeing.
When following your steps on a freshly installed copy of InstallShield 2014, the following three warnings are issued:
ISDEV : warning -7235: InstallShield could not create the software identification tag because the Tag Creator ID setting in the General Information view is empty.
ISDEV : warning -1527: No files are included in the project.
ISDEV : warning -6122: No components are included in the build.
warning -6122 is the big one. Microsoft Windows Installer does not support having an MSI without any components.
farukhsharipov
Pilgrim
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Jun 16, 2015
01:19 PM
Resolved
Thank you for explanation. Added component, working now.