 |
|
 |
For those looking for a complete setup bootstrapper: http://www.codeplex.com/dotnetinstaller
|
|
|
|
 |
|
|
 |
|
 |
Hi,
I been strugling for the last 4 days with the ms version, to try and make it open an exe file instead of an msi?
Do you know how i might be able to solve those?
Jimmi Hested
jhested@hotmail.com
|
|
|
|
 |
|
 |
Please help us to AutoLaunch the Application after installing the Setup.
We are using C#.Net
Application has to get started automatically after the installation is completed.
Would be helpful if sample is given .
|
|
|
|
 |
|
 |
Hi,
try using LaunchApp(...) in your install script and execute the event after installation is completed..
Ex for launching notepad...
#define APPLICATION WINDIR^"Notepad.exe"
#define CMD_LINE WINDIR^"Readme.txt"
#include "Ifx.h"
export prototype ExFn_LaunchApp(HWND);
function ExFn_LaunchApp(hMSI)
begin
if (LaunchApp (APPLICATION, CMD_LINE) < 0) then
MessageBox ("Unable to launch "+APPLICATION+".", SEVERE);
endif;
end;
Hope it works.
The above code is from the help file from InstallShield...I think you will get answers there.
Let me know it worked or not?
~dinesh
|
|
|
|
 |
|
 |
Yes, the launching of your program after the installation should be part of your installer.
Kevin
|
|
|
|
 |
|
 |
sir
can you do this using c#.currently i m working on a c# project and i m using sfx(a type of encrypted file ) but unable to launch applications one after another.
|
|
|
|
 |
|
 |
sir
can you do this using c#.currently i m working on a c# project and i m using sfx(a type of encrypted file ) but unable to launch applications one after another.
shiv
9917163656
|
|
|
|
 |
|
 |
The whole point of this program is to install .Net so that you can use C#, so you can't use C# to do this.
That's why it has to be in C.
|
|
|
|
 |
|
 |
Please help us to AutoLaunch the Application after installing the Setup.
We are using C#.Net
Application has to get started automatically after the installation is completed.
-- modified at 7:06 Monday 22nd January, 2007
Would be helpful if sample is given .
|
|
|
|
 |
|
 |
because many programs have more than one msi,does it support to install more .msi once?
such as in .ini file:
msi=a.msi,b.msi
...
many thanx~
Bright Zhang
|
|
|
|
 |
|
 |
No, the installer can only install 1 file. I'm not sure but I think it might be possible for your msi file to launch another msi file.
Kevin Moore
|
|
|
|
 |
|
 |
my program has two .msi for server and client,but I want to install them in one computer once.
how to do that with ur setup.exe/ini?
|
|
|
|
 |
|
 |
Hi!
Why does the .exe files look for the v1.1 service pack even if I commented it out from the settings.ini file?
Thanks!
Emeleen
|
|
|
|
 |
|
 |
How did you comment it out?
Kevin
|
|
|
|
 |
|
 |
Does this work with installing Windows Installer 3.0? as this is required before .NET framework 2.0 will be installed... I notice that the redistributable package of microsoft has different filename... WindowsInstaller-KB884016-v2-x86.exe
will the MSIInstallPath still see this .exe file?
Thanks!
Emeleen
|
|
|
|
 |
|
 |
If the Windows installer has changed, I think you can just change the name in the ini file.
Kevin
|
|
|
|
 |
|
 |
Thanx for the post, exactly what I needed.
Couple of questions.
1 - Is there someway that I can also include the java runtime, as I use fop for my reports and need the java runtime.
2 - If you cancel the setup for the .net service pack the whole thing exists, can I just not include the service pack, reason why is that after it installs the service pack it wants to reboot the machine, if you do the installation doesn't continue automatically, you have to manually run it again and then deselect the msde and .net for the first screen, otherwise it tries to install it again.
Many thanx
He who laughs last is a bit on the slow side
|
|
|
|
 |
|
 |
Unfortunately, the way the program is written every new item must be hard coded into the installer. I started work on a different version that just installs the .Net framework and then launches a C# program that can install any number of programs but I've stopped work on it. (Too busy with 3-4 hour commutes)
I think you should be able to just remove the service pack from the properties file.
Kevin
|
|
|
|
 |
|
 |
Thanx for the quick reply.
Kevin Moore wrote: I think you should be able to just remove the service pack from the properties file.
Do you mean within the source or the ini file.
Many thanx again.
He who laughs last is a bit on the slow side
|
|
|
|
 |
|
 |
Within the ini file.
Kevin
|
|
|
|
 |
|
 |
Is it compitalbe with .NET framework 2.0? Can I just change .NET version in .ini file to 2.0?
|
|
|
|
 |
|
 |
It should work fine with 2.0. Give it a try, but make sure you change the version number as well.
Kevin
|
|
|
|
 |
|
 |
I tried fixing this, but I'm simply not smart enough to fix it. Can you find a way to fix this?
When one of the pre-reqs is being installed, if you click and move the billboard window around via the title bar, and never release the mouse button, the dialog will never disappear and the app will just sit there with the dialog up.
I know, "why would a user ever do that" ... hey, it could happen especially with some of the smaller setups.
|
|
|
|
 |
|
 |
It sounds like you don't have the latest code. I've removed the billboard as it was giving me all kinds of grief.
Kevin
|
|
|
|
 |