473,394 Members | 1,866 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,394 software developers and data experts.

VB.Net Application Deployment Wizard

When I use the wizard to add the setup project to my applicaiton, it puts a
file called "dotnetfx.exe" in the Release Directory. However, I find that I
really don't need this file to distribute my application as the .msi and
setup files run quite well without it. What is this file used for. It's
23mb and I don't want to distribute it.

Also, I assume I can just distribute the .msi, setup.exe, config.ini, and
setup.ini files and the installation will work fine on target computers so
long as the have the proper framework...is this correct?
--
Dennis in Houston
Dec 30 '05 #1
4 3108
Dennis

dotnetfx.exe is the frameworks redistributable file ,,, so it is only
necessary for computers wich do not have the framework installed
probably your target audience keeps there computer up to date ( wish mine
were like that to :-) )

by the way on a computer without the framework your setup will just work
fine ( as the installer has its own runtime ennvironment ) however your
proggy will not run
regards

Michel Posseth [MCP]
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:F9**********************************@microsof t.com...
When I use the wizard to add the setup project to my applicaiton, it puts
a
file called "dotnetfx.exe" in the Release Directory. However, I find that
I
really don't need this file to distribute my application as the .msi and
setup files run quite well without it. What is this file used for. It's
23mb and I don't want to distribute it.

Also, I assume I can just distribute the .msi, setup.exe, config.ini, and
setup.ini files and the installation will work fine on target computers so
long as the have the proper framework...is this correct?
--
Dennis in Houston

Dec 31 '05 #2
Thanks a lot for your answer. I guess that if a computer did not have the
framework then it would be automatically installed if the dotnetfx file was
included in my distribution package. Is this right?
--
Dennis in Houston
"m.posseth" wrote:
Dennis

dotnetfx.exe is the frameworks redistributable file ,,, so it is only
necessary for computers wich do not have the framework installed
probably your target audience keeps there computer up to date ( wish mine
were like that to :-) )

by the way on a computer without the framework your setup will just work
fine ( as the installer has its own runtime ennvironment ) however your
proggy will not run
regards

Michel Posseth [MCP]
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:F9**********************************@microsof t.com...
When I use the wizard to add the setup project to my applicaiton, it puts
a
file called "dotnetfx.exe" in the Release Directory. However, I find that
I
really don't need this file to distribute my application as the .msi and
setup files run quite well without it. What is this file used for. It's
23mb and I don't want to distribute it.

Also, I assume I can just distribute the .msi, setup.exe, config.ini, and
setup.ini files and the installation will work fine on target computers so
long as the have the proper framework...is this correct?
--
Dennis in Houston


Dec 31 '05 #3
Yes it is

however if you can shift the .Net runtime environment necesarity to the
system administrator this would be a much better choice as the overhead of
25 mb to a application deploy of normally just a few kb`s is pretty high :-)

watch out with fireworks :-)

Hope you have a happy 2006

Michel Posseth [MCP]
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:BF**********************************@microsof t.com...
Thanks a lot for your answer. I guess that if a computer did not have the
framework then it would be automatically installed if the dotnetfx file
was
included in my distribution package. Is this right?
--
Dennis in Houston
"m.posseth" wrote:
Dennis

dotnetfx.exe is the frameworks redistributable file ,,, so it is only
necessary for computers wich do not have the framework installed
probably your target audience keeps there computer up to date ( wish
mine
were like that to :-) )

by the way on a computer without the framework your setup will just work
fine ( as the installer has its own runtime ennvironment ) however your
proggy will not run
regards

Michel Posseth [MCP]
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:F9**********************************@microsof t.com...
> When I use the wizard to add the setup project to my applicaiton, it
> puts
> a
> file called "dotnetfx.exe" in the Release Directory. However, I find
> that
> I
> really don't need this file to distribute my application as the .msi
> and
> setup files run quite well without it. What is this file used for.
> It's
> 23mb and I don't want to distribute it.
>
> Also, I assume I can just distribute the .msi, setup.exe, config.ini,
> and
> setup.ini files and the installation will work fine on target computers
> so
> long as the have the proper framework...is this correct?
> --
> Dennis in Houston


Dec 31 '05 #4
Great. What I'll do is present two different downloads, i.e., one with the
framework and one without and the user can decide for himself if he has the
framework 1.1 or later installed. Have a happy new year and hope you got all
you wanted for Xmas.
--
Dennis in Houston
"m.posseth" wrote:
Yes it is

however if you can shift the .Net runtime environment necesarity to the
system administrator this would be a much better choice as the overhead of
25 mb to a application deploy of normally just a few kb`s is pretty high :-)

watch out with fireworks :-)

Hope you have a happy 2006

Michel Posseth [MCP]
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:BF**********************************@microsof t.com...
Thanks a lot for your answer. I guess that if a computer did not have the
framework then it would be automatically installed if the dotnetfx file
was
included in my distribution package. Is this right?
--
Dennis in Houston
"m.posseth" wrote:
Dennis

dotnetfx.exe is the frameworks redistributable file ,,, so it is only
necessary for computers wich do not have the framework installed
probably your target audience keeps there computer up to date ( wish
mine
were like that to :-) )

by the way on a computer without the framework your setup will just work
fine ( as the installer has its own runtime ennvironment ) however your
proggy will not run
regards

Michel Posseth [MCP]
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:F9**********************************@microsof t.com...
> When I use the wizard to add the setup project to my applicaiton, it
> puts
> a
> file called "dotnetfx.exe" in the Release Directory. However, I find
> that
> I
> really don't need this file to distribute my application as the .msi
> and
> setup files run quite well without it. What is this file used for.
> It's
> 23mb and I don't want to distribute it.
>
> Also, I assume I can just distribute the .msi, setup.exe, config.ini,
> and
> setup.ini files and the installation will work fine on target computers
> so
> long as the have the proper framework...is this correct?
> --
> Dennis in Houston


Dec 31 '05 #5

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

Similar topics

4
by: Gerry Laenen | last post by:
Hi, I first created several ActiveX DLL's which interact with each other, an SQL Server database, ... Some Active DLL's use different references: i.e. one that does not interact with a database,...
2
by: ksskumar | last post by:
Hi Friends, My software's target is to creating a add-in for Outlook. I am struckup of creating deployment of my software. My software flow is as follows, 1. Complete functionality is...
2
by: art | last post by:
Hi All I wanted to deploy Access files and came to the conclusion that I'd need the Windows XP Developer software but was told that it was no longer available I was instructed to get Visual Studio...
4
by: Tony | last post by:
After installing the A2003 developer extensions I expected the "VBA Package and Deployment Wizard" to be available in the Add-In Manager dialogue box. It did not appear. No option appeared. ...
5
by: Geri Reshef | last post by:
In the VB6 I used the "Package & Deployment Wizard" to create an installation package. I didn't find the VB.Net equivalent. Does anybody knows where or what is it?
3
by: Aldo | last post by:
I just installed Visual Basic.Net 2003 in a PC ( Windows XP SP2) at work in order to create a windows application using Softwire to collect data from a couple of instruments in our lab from a DAQ...
4
by: Rick | last post by:
I have a VB.Net 2005 application that I am publishing to a network file server. The app reads an xml file that has some database connection information in it. This xml file is located in the...
4
by: JimCinLA | last post by:
On an ASP.Net 2.0 Web project, I created a deployment setup using the deployment wizard in Visual Studio 2005. I use SQL 2005 Express as a database server. The development version of my...
1
by: RandomElle | last post by:
Can anyone help me out with locating & using the package and deployment wizard for Access 2003? I have searched for HOURS and cannot find the Package & Deployment wizard for Access2003 anywhere on...
3
by: Looch | last post by:
Hi All, Forgive my lack of using the right terms here but I'm hoping someone has an answer. I'm using VS 2005 C# Express and doing the following: Right clicking the solution name and choosing...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.