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: Problem about windows installer,Help
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
‎Jul 09, 2008
09:32 PM
Problem about windows installer,Help
I'm working on a InstallScript MSI project.
I want to install .netframework3.5 during installation process. See the following code:
#define PROGRAM1 TARGETDIR^"dotnetfx35.exe"
export prototype DefaultFeature_Installed();
function DefaultFeature_Installed()
begin
LaunchAppAndWait (PROGRAM1, "", WAIT);
end;
Then a error massage pop-up:
The Windows Installer service is unavailable. Another application may be running setup. Finish any installations in progress, or restart your computer, and then re-run setup.
can't vista run two windows installers at the same time???:confused:
Anyone have any idea or solution about this problem?
thanks in advance
I want to install .netframework3.5 during installation process. See the following code:
#define PROGRAM1 TARGETDIR^"dotnetfx35.exe"
export prototype DefaultFeature_Installed();
function DefaultFeature_Installed()
begin
LaunchAppAndWait (PROGRAM1, "", WAIT);
end;
Then a error massage pop-up:
The Windows Installer service is unavailable. Another application may be running setup. Finish any installations in progress, or restart your computer, and then re-run setup.
can't vista run two windows installers at the same time???:confused:
Anyone have any idea or solution about this problem?
thanks in advance
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 09, 2008
11:18 PM
Nope. There are two mutex's for you to be aware of:
1) Only one UI sequence per process
2) Only one Execute sequence per machine
In IS2009/MSI 4.5 you have more choices, but for IS2008 uou need to use a Setup Prerequisite to do what your trying to do.
1) Only one UI sequence per process
2) Only one Execute sequence per machine
In IS2009/MSI 4.5 you have more choices, but for IS2008 uou need to use a Setup Prerequisite to do what your trying to do.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 13, 2009
08:25 AM
Christopher Painter wrote:
Nope. There are two mutex's for you to be aware of:
1) Only one UI sequence per process
2) Only one Execute sequence per machine
In IS2009/MSI 4.5 you have more choices, but for IS2008 uou need to use a Setup Prerequisite to do what your trying to do.
What are the other options in IS2009? I have the same problem, but I have IS2009 Premiere edition. I'd rather not use a prerequisite as the .NET Framework is required by an optional component.
Since I am making an Installscript MSI project I don't have the option of component/feature prerequisites I believe; but if there was a way of making the prerequisite specific to the component/feature that would be ideal. My workaround for this is to have a custom action trigger the .NET Framework installer if the feature has been selected.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 20, 2009
06:10 PM
I am having the same problem.
Branstar - Does your workaround with custom action trigger work?
How is the custom action trigger made?
Branstar - Does your workaround with custom action trigger work?
How is the custom action trigger made?