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

Deploying applications with .NET

Hi all,

I've written a VB.NET application that I want to convert into an exe file
which will run on other computers. Can you give me a few guidelines on how
to do this, or a useful link

I've tried building the solution as a release, but I can't get it to work on
other machines,

thanks in advance for any help given,

regards,

Edward.
Nov 20 '05 #1
11 1338
Hi,

You need the dotnet framework installed on the machines you want to
run the program on.

Ken
----------------
"Edward Bird" <ef****@blueyonder.co.uk> wrote in message
news:Ck******************@fe2.news.blueyonder.co.u k...
Hi all,

I've written a VB.NET application that I want to convert into an exe file
which will run on other computers. Can you give me a few guidelines on how
to do this, or a useful link

I've tried building the solution as a release, but I can't get it to work on
other machines,

thanks in advance for any help given,

regards,

Edward.

Nov 20 '05 #2
Edward,

Do the other machines have the .net framework installed?

regards,

Poolbeer

--

Poolbeer (MCP)

"Edward Bird" <ef****@blueyonder.co.uk> wrote in message
news:Ck******************@fe2.news.blueyonder.co.u k...
Hi all,

I've written a VB.NET application that I want to convert into an exe file
which will run on other computers. Can you give me a few guidelines on how
to do this, or a useful link

I've tried building the solution as a release, but I can't get it to work on other machines,

thanks in advance for any help given,

regards,

Edward.

Nov 20 '05 #3
Hi,

You need the dotnet framework installed on the machines you want to run the program on.

Ken


Hmm. This seems very restrictive. How can I get around this?

regards,

Edward.
Nov 20 '05 #4

"Poolbeer (MCP)" <poolbeer @ NoSpam oxylogic . net> wrote in message
news:O$**************@TK2MSFTNGP11.phx.gbl...
Edward,

Do the other machines have the .net framework installed?

regards,

Poolbeer


No, they don't.

Does the .NET framework *have* to be installed. Is there any way around
this?

Also, is the .NET framework built into XP, or does it have to be installed
separately?

regards,

Edward
Nov 20 '05 #5
Hi,

I would recomend you install the framework but maybe this will help.
http://thinstall.com/help/index.html...tframework.htm

Ken
--------------------
"Edward Bird" <ef****@blueyonder.co.uk> wrote in message
news:Og******************@fe2.news.blueyonder.co.u k...
Hi,

You need the dotnet framework installed on the machines you want to run the program on.

Ken


Hmm. This seems very restrictive. How can I get around this?

regards,

Edward.

Nov 20 '05 #6
Edward,

To run applications written in VB.net or C# (or any managed language) you
MUST have the .net framework installed on the machine.

Windows XP Service Pack 1 has the .net framework embedded (I think). and
Windows Update lists this as a optional update too (if prior to SP1).

regards,

Poolbeer

--

Poolbeer (MCP)

"Edward Bird" <ef****@blueyonder.co.uk> wrote in message
news:Di******************@fe2.news.blueyonder.co.u k...

"Poolbeer (MCP)" <poolbeer @ NoSpam oxylogic . net> wrote in message
news:O$**************@TK2MSFTNGP11.phx.gbl...
Edward,

Do the other machines have the .net framework installed?

regards,

Poolbeer


No, they don't.

Does the .NET framework *have* to be installed. Is there any way around
this?

Also, is the .NET framework built into XP, or does it have to be installed
separately?

regards,

Edward

Nov 20 '05 #7
No - XP SP1 does not have the framework. I wonder whether SP2 has it though

--
Sriram Krishnan
Microsoft Student Ambassador
http://www.dotnetjunkies.com/weblog/sriram
"Poolbeer (MCP)" <poolbeer @ NoSpam oxylogic . net> wrote in message
news:Oz**************@tk2msftngp13.phx.gbl...
Edward,

To run applications written in VB.net or C# (or any managed language) you
MUST have the .net framework installed on the machine.

Windows XP Service Pack 1 has the .net framework embedded (I think). and
Windows Update lists this as a optional update too (if prior to SP1).

regards,

Poolbeer

--

Poolbeer (MCP)

"Edward Bird" <ef****@blueyonder.co.uk> wrote in message
news:Di******************@fe2.news.blueyonder.co.u k...

"Poolbeer (MCP)" <poolbeer @ NoSpam oxylogic . net> wrote in message
news:O$**************@TK2MSFTNGP11.phx.gbl...
Edward,

Do the other machines have the .net framework installed?

regards,

Poolbeer


No, they don't.

Does the .NET framework *have* to be installed. Is there any way around
this?

Also, is the .NET framework built into XP, or does it have to be installed separately?

regards,

Edward


Nov 20 '05 #8
SP2 is suppose to have NET 1.1 Framework.

Greg

"Sriram Krishnan" <ks*****@NOSPAMgmx.net> wrote in message
news:un***************@TK2MSFTNGP10.phx.gbl...
No - XP SP1 does not have the framework. I wonder whether SP2 has it though
--
Sriram Krishnan
Microsoft Student Ambassador
http://www.dotnetjunkies.com/weblog/sriram

Nov 20 '05 #9
Why is it such a big deal?

On install tell user to run dotnetfx once to install it and if they already
have it from another .NET app they won't need to.

Or download the MS bootstrap setup that includes installing framework.

The thing is that all new versions of Windows will definitely have it and if
people want to run most new apps they are going to have to have it. Yes it
is a pain in one sense but on the other hand, once installed you can copy an
..EXE without a setup, technically to that machine and it will run--just like
in DOS days.

So there are pluses and minuses.

I have also read of companies that take the framework and your app and do
static linking somehow to form a standalone exe. This would do what you
want but in my opinion is a big waste of space since it would need to
statically link reusable framework code into every such app instead of the
framework just being installed once and everyone using it.

My 2 cents worth,

Shane
"Edward Bird" <ef****@blueyonder.co.uk> wrote in message
news:Di******************@fe2.news.blueyonder.co.u k...

"Poolbeer (MCP)" <poolbeer @ NoSpam oxylogic . net> wrote in message
news:O$**************@TK2MSFTNGP11.phx.gbl...
Edward,

Do the other machines have the .net framework installed?

regards,

Poolbeer


No, they don't.

Does the .NET framework *have* to be installed. Is there any way around
this?

Also, is the .NET framework built into XP, or does it have to be installed
separately?

regards,

Edward

Nov 20 '05 #10
"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:ug**************@tk2msftngp13.phx.gbl...
Why is it such a big deal?

On install tell user to run dotnetfx once to install it and if they already have it from another .NET app they won't need to.


According to what I've read it would increase by program from about 3MB to
something like 26MB. That's enough to keep people from even trying to
download my program. In fact, it's more than I can even send on my ISP.

That Thinstall that someone mentioned looks fantastic!
http://thinstall.com/help/index.html...tframework.htm. Why in the
world doesn't MS offer something like this? I can't afford $1,400 just to
send a few friends a program I wrote.
Nov 20 '05 #11
Well yes if you are downloading it is a deal.
It doesn't really increase your program... just the prereqs.
ie. the more dotnet programs you write for a machine the less "behemoth"
those apps are.

The actual dot net EXE's are really small.

Just the runtime is huge.

However since Microsoft spent 1 billion--so I hear--on developing dotnet.
It isn't going away and will come standard with Windows. People--no matter
how slow their connection are going to need to get it period. You could
offer your product via CD if it is a real concern--for those without
broadband.

I do know what you mean that some folks won't want the hassle.

Shane
"Ricky W. Hunt" <rh*****@hotmail.com> wrote in message
news:i9vPc.78996$eM2.2714@attbi_s51...
"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:ug**************@tk2msftngp13.phx.gbl...
Why is it such a big deal?

On install tell user to run dotnetfx once to install it and if they

already
have it from another .NET app they won't need to.


According to what I've read it would increase by program from about 3MB to
something like 26MB. That's enough to keep people from even trying to
download my program. In fact, it's more than I can even send on my ISP.

That Thinstall that someone mentioned looks fantastic!
http://thinstall.com/help/index.html...tframework.htm. Why in the
world doesn't MS offer something like this? I can't afford $1,400 just to
send a few friends a program I wrote.

Nov 20 '05 #12

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

Similar topics

2
by: pieter.breed | last post by:
Hi All, The company I work for has traditionally used COM/ActiveX for the solutions that it provides. We are in the process of moving to .NET and a few applications have been written in VB.NET...
1
by: Mister_d | last post by:
When deploying a solution using the Access 2003 runtime engine, do you have to use the packaging wizard that comes with the Access 2003 Developer Extentions, or can you use other packaging software...
2
by: Ann Marinas | last post by:
Hi All! I am kinda confused with deploying a dotnetfx & MDAC together with my .NET applications. I was reading the "Redistributing the .NET Framework" on MSDN...
10
by: Gerben van Loon | last post by:
Hi there, hope someone can help me on this: I'm planning to deploy several ASP.NET projects to a production server. Normally I used the "Project / Copy project" option in VS.NET, but to this...
2
by: Tom N | last post by:
Here's is our configuration ..Net Framework 1.1, Windows 2000, AppCenter 200 Our developers use XCOPY to deploy to the AppCenter NLB cluster (obviously, to the node that is the controller ...
4
by: john | last post by:
I think some of the changes to Asp.net are rediculous. Take the ability to deploy source code to production that is compiled on the fly. If this is such a great model, why not distribute your...
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? ...
0
by: E Jensen | last post by:
I am trying to deploy a .NET 2.0 Application to the network. However, I have run into the Runtime Security Policy problem. The whole point of deploying to the network instead of to each user's...
0
by: steve | last post by:
H I new in deploying applications with visual studio 2005. I've used the setup wizard for a project when the user deploys the project I need to now where the user has put it. (path of the...
6
by: Ryan | last post by:
Is there any way to save a VB 2005 created application as an .MSI install file? The only method I see is to publish as a .EXE. Curious because I want to push out an application with Group Policy....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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...
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
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
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.