This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: InstallChangeFolder Error 2731 Selection Manager not initialized
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- 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.
(6) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 15, 2015
02:51 PM
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.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 16, 2015
09:50 AM
What components, have you tried steps that I listed to reproduce the issue?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 16, 2015
10:29 AM
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.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 16, 2015
10:29 AM
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.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 16, 2015
01:19 PM
Thank you for explanation. Added component, working now.