473,405 Members | 2,334 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Deploying framework in deployment package

Hello, I 'm not sure if this is the correct forum to post this question in
but, I using MS' suggested method of using their setup.exe and settings.ini
to deploy dotnetfx.exe with my deployment package. My question is, there are
settings in the Config.ini file that I'd like to know how to change but
can't find any info on. For instance, I would like to change the following
line:
IDS_SETUP_SUCCEEDED=Setup succeeded.

to keep the setup succeeded dialog from even displaying. Anybody know
anything about this?

Thanks in advance.

Steve
Aug 17 '06 #1
4 1256
Hi Steve,

Sorry, I don't know anything about that, but I'm curious why you have this requirement in the first place. If the app is being
installed by a person, how will that person know if the installation is successful without looking at the log?

I think you have another way to do this, if it's really necessary, by using Visual Studio.NET. Create a setup and deployment
project and open its "User Interface Editor". One of the dialogs listed is named, "Finish" and it's located under the "End" step.
You can delete it from here.

GL

--
Dave Sexton

"Steve Long" <St**********@NoSpam.comwrote in message news:Oh****************@TK2MSFTNGP06.phx.gbl...
Hello, I 'm not sure if this is the correct forum to post this question in
but, I using MS' suggested method of using their setup.exe and settings.ini
to deploy dotnetfx.exe with my deployment package. My question is, there are
settings in the Config.ini file that I'd like to know how to change but
can't find any info on. For instance, I would like to change the following
line:
IDS_SETUP_SUCCEEDED=Setup succeeded.

to keep the setup succeeded dialog from even displaying. Anybody know
anything about this?

Thanks in advance.

Steve


Aug 19 '06 #2
Dave,
here's the scenario:

I have a VB6 app that I needed to modify and I decided to use VS 2003 to
create additional functionality via a COM DLL. The installation for that
program was done in InstallShield Express so I converted it to InstallShield
X Express. I tried to convert it to Wise but couldn't get the Wise Installer
to do what I needed to get done. So, I have this Install that, will extract
and .msi before continuing the install. I grab the .msi and alter Microsoft
Setup.exe sample (actually the Setup.ini file) to point to my .msi. This
Setup.exe program will install dotnetfx.exe if the framework is not already
there but it also pops up those stupid dialog boxes at the beginning and end
of the install process. I'd like to get ride of them is all. I opened the
..msi in Wise for Windows Installer but couldn't find where those dialogs
were.

Convoluted I know but it's what I'm stuck with for now.

Steve

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
Hi Steve,

Sorry, I don't know anything about that, but I'm curious why you have this
requirement in the first place. If the app is being
installed by a person, how will that person know if the installation is
successful without looking at the log?
>
I think you have another way to do this, if it's really necessary, by
using Visual Studio.NET. Create a setup and deployment
project and open its "User Interface Editor". One of the dialogs listed
is named, "Finish" and it's located under the "End" step.
You can delete it from here.

GL

--
Dave Sexton

"Steve Long" <St**********@NoSpam.comwrote in message
news:Oh****************@TK2MSFTNGP06.phx.gbl...
Hello, I 'm not sure if this is the correct forum to post this question
in
but, I using MS' suggested method of using their setup.exe and
settings.ini
to deploy dotnetfx.exe with my deployment package. My question is, there
are
settings in the Config.ini file that I'd like to know how to change but
can't find any info on. For instance, I would like to change the
following
line:
IDS_SETUP_SUCCEEDED=Setup succeeded.

to keep the setup succeeded dialog from even displaying. Anybody know
anything about this?

Thanks in advance.

Steve


Aug 23 '06 #3
Hi Steve,

I see now that you are trying to suppress the dotnetfx.exe dialogs and I believe that you might be able to do that using the "/q:a"
and "/q" switches, however I haven't tested this myself:

http://msdn.microsoft.com/library/de...otnetfxref.asp

If you ask me, dialogs should be the least of your worries ;)

--
Dave Sexton

"Steve Long" <St**********@NoSpam.comwrote in message news:%2****************@TK2MSFTNGP03.phx.gbl...
Dave,
here's the scenario:

I have a VB6 app that I needed to modify and I decided to use VS 2003 to
create additional functionality via a COM DLL. The installation for that
program was done in InstallShield Express so I converted it to InstallShield
X Express. I tried to convert it to Wise but couldn't get the Wise Installer
to do what I needed to get done. So, I have this Install that, will extract
and .msi before continuing the install. I grab the .msi and alter Microsoft
Setup.exe sample (actually the Setup.ini file) to point to my .msi. This
Setup.exe program will install dotnetfx.exe if the framework is not already
there but it also pops up those stupid dialog boxes at the beginning and end
of the install process. I'd like to get ride of them is all. I opened the
.msi in Wise for Windows Installer but couldn't find where those dialogs
were.

Convoluted I know but it's what I'm stuck with for now.

Steve

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>Hi Steve,

Sorry, I don't know anything about that, but I'm curious why you have this
requirement in the first place. If the app is being
>installed by a person, how will that person know if the installation is
successful without looking at the log?
>>
I think you have another way to do this, if it's really necessary, by
using Visual Studio.NET. Create a setup and deployment
>project and open its "User Interface Editor". One of the dialogs listed
is named, "Finish" and it's located under the "End" step.
>You can delete it from here.

GL

--
Dave Sexton

"Steve Long" <St**********@NoSpam.comwrote in message
news:Oh****************@TK2MSFTNGP06.phx.gbl...
Hello, I 'm not sure if this is the correct forum to post this question
in
but, I using MS' suggested method of using their setup.exe and
settings.ini
to deploy dotnetfx.exe with my deployment package. My question is, there
are
settings in the Config.ini file that I'd like to know how to change but
can't find any info on. For instance, I would like to change the
following
line:
IDS_SETUP_SUCCEEDED=Setup succeeded.

to keep the setup succeeded dialog from even displaying. Anybody know
anything about this?

Thanks in advance.

Steve




Aug 23 '06 #4
Thanks Dave,
I'll check that out.

I know, I know. It's a bit of a mess but it seems to be working. GG, it's so
much easier to write some of this stuff in .NET that I didn't want to mess
with VB6 to get'r done... :)

Steve

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
Hi Steve,

I see now that you are trying to suppress the dotnetfx.exe dialogs and I
believe that you might be able to do that using the "/q:a"
and "/q" switches, however I haven't tested this myself:

http://msdn.microsoft.com/library/de...otnetfxref.asp
>
If you ask me, dialogs should be the least of your worries ;)

--
Dave Sexton

"Steve Long" <St**********@NoSpam.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Dave,
here's the scenario:

I have a VB6 app that I needed to modify and I decided to use VS 2003 to
create additional functionality via a COM DLL. The installation for that
program was done in InstallShield Express so I converted it to
InstallShield
X Express. I tried to convert it to Wise but couldn't get the Wise
Installer
to do what I needed to get done. So, I have this Install that, will
extract
and .msi before continuing the install. I grab the .msi and alter
Microsoft
Setup.exe sample (actually the Setup.ini file) to point to my .msi. This
Setup.exe program will install dotnetfx.exe if the framework is not
already
there but it also pops up those stupid dialog boxes at the beginning and
end
of the install process. I'd like to get ride of them is all. I opened
the
.msi in Wise for Windows Installer but couldn't find where those dialogs
were.

Convoluted I know but it's what I'm stuck with for now.

Steve

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
Hi Steve,

Sorry, I don't know anything about that, but I'm curious why you have
this
requirement in the first place. If the app is being
installed by a person, how will that person know if the installation is
successful without looking at the log?
>
I think you have another way to do this, if it's really necessary, by
using Visual Studio.NET. Create a setup and deployment
project and open its "User Interface Editor". One of the dialogs
listed
is named, "Finish" and it's located under the "End" step.
You can delete it from here.

GL

--
Dave Sexton

"Steve Long" <St**********@NoSpam.comwrote in message
news:Oh****************@TK2MSFTNGP06.phx.gbl...
Hello, I 'm not sure if this is the correct forum to post this
question
in
but, I using MS' suggested method of using their setup.exe and
settings.ini
to deploy dotnetfx.exe with my deployment package. My question is,
there
are
settings in the Config.ini file that I'd like to know how to change
but
can't find any info on. For instance, I would like to change the
following
line:
IDS_SETUP_SUCCEEDED=Setup succeeded.

to keep the setup succeeded dialog from even displaying. Anybody know
anything about this?

Thanks in advance.

Steve





Aug 23 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Brant | last post by:
I have an EXE that I want to deploy to approx 200 PCs. Is there a way to create a setup package that executes my EXE after the framework has been installed? I want to perform a silent install of...
0
by: Oleg | last post by:
HI, all. Sorry for posting to so many groups, but I really don't know in which group this question fits best. Anyways, here goes... I have a bunch of DTS packages that my client application...
3
by: Chris Dunaway | last post by:
A quick scan of the group did not immediately reveal an answer to my questions so here goes. First let me describe my app and then I'll ask the questions. I am writing a Windows Forms App (not...
1
by: hamidreza rezaee | last post by:
1-How i can buld an EXE file from my projects that it can run in all of windowsbut it doesn`t need runtime files 2-When i buld a windows installer (msi file) from my projects i have a warning...
1
by: ray well | last post by:
hi, i need to deploy MDAC_typ.exe and dotnetfx.exe with an app. i do NOT want the user to have to exit the app's setup and have to run these 2 programs on their own. i would like to have my...
3
by: PVP | last post by:
My manager is asking me to develop an application in VB.NET.I realized that our clients don't have .NET installed on their system.They all have visual studio installed (includes vb 6.0). Should I...
1
by: Sebastian Santacroce | last post by:
Is it posible to package MSDE with VB .net so that its part of the installation? If so, is there documentation somewhere? What about packaging the .net framework with the application as well? ...
10
by: Bryan Dickerson | last post by:
I fairly have my Web Service working the way that I want, so my next step will be to deploy it on a server. Do I just add a deployment/install project, build it and install it on the server? ...
5
by: RobinS | last post by:
My company is considering moving up from .Net 2.0 to .Net 3.5(SP1) as a prerequisite on the ClickOnce deployment for our application. Does anybody have any experience deploying .Net 3.5 either as...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.