|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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 .
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
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 .
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
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?
|
| Sign In·View Thread·PermaLink | 2.00/5 (2 votes) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
Is it compitalbe with .NET framework 2.0? Can I just change .NET version in .ini file to 2.0?
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
It should work fine with 2.0. Give it a try, but make sure you change the version number as well.
Kevin
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
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.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
is there a bootstrapper in visual studio 2005? or how can i install my application with framework 2.0 with only one user click on setup.msi file? First it will search dotnetframework on pc,if it isn't installed,then it will install it,after this it will start to install my C# application that i in visual studio 2005 develop
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
There is a setup and setup wizard project that you can add to your project. I believe that it creates a msi file. However, I don't think that it handles any type of bootstrapping. Sorry I can't be of more help but I've only used to to create my own msi file.
Kevin
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
hi,
Is it possible to launch the installed application after clicking the finish button in the installation complete wizard. Once the user clicks the finish button after the installtion, the installed application should be launched automatically in the next moment. Please any one help me out to solve this requirement.
Waiting for your reply. Im using .Net 2005 set up project and also using bootstrapper to donload the dotnetfx.exe.
Regards Mukilan.*
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
|
Shouldn't be too hard for you to do. Just put another ExecCmd call with your program after the main installer is called in main.cpp.
Kevin
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |