473,545 Members | 2,047 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

300Mb Download to run a .NET2.0 Application?


I spent most of yesterday looking into this, and still didn't really find
an answer...

I have a .NET2.0 app that I need to install on a server, and then possibly
several other servers later, it requires access to LAN and internet. I
installed the 20mb Framework, then drop my program on there, but theres no
Framework Configuration for 2.0 only the 1.1 version (MSCORCFG.MSC) so I
can't alter the security, and so my app fails to access the LAN etc.

I then tried copying the 2.0 MSCORCFG.MSC and DLL across to see if I can
run that, but it failed.

The only way I see of resolving this is to install the .NET2.0 SDK on each
server and PC. All the applications I develop require LAN and Internet
access, and some require installing onto several PCs, so a 300mb Download
isn't really acceptable.

Scott
Nov 29 '05 #1
5 4935
Scott,

You only need the framework redist package.

32bit 23 megs
http://www.microsoft.com/downloads/d...displaylang=en

64bit x64 version 46 megs
http://www.microsoft.com/downloads/d...displaylang=en

64bit ia64 version 53 megs
http://www.microsoft.com/downloads/d...displaylang=en

Ken
------------------
"Scott H" <x@y.com> wrote in message
news:op******** *******@scottup stairs.custardg roup.co.uk...

I spent most of yesterday looking into this, and still didn't really find
an answer...

I have a .NET2.0 app that I need to install on a server, and then possibly
several other servers later, it requires access to LAN and internet. I
installed the 20mb Framework, then drop my program on there, but theres no
Framework Configuration for 2.0 only the 1.1 version (MSCORCFG.MSC) so I
can't alter the security, and so my app fails to access the LAN etc.

I then tried copying the 2.0 MSCORCFG.MSC and DLL across to see if I can
run that, but it failed.

The only way I see of resolving this is to install the .NET2.0 SDK on each
server and PC. All the applications I develop require LAN and Internet
access, and some require installing onto several PCs, so a 300mb Download
isn't really acceptable.

Scott

Nov 29 '05 #2
"Ken Tucker [MVP]" <vb***@bellsout h.net> schrieb:
You only need the framework redist package.

32bit 23 megs
http://www.microsoft.com/downloads/d...displaylang=en


.... which doesn't include the control panel.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 29 '05 #3

Sorry Ken, but Theres no "Framework 2.0 Configuration" when the 23mb
Framework is installed, so I can't alter the security, tried it on two
Windows 2003 Servers now, then I put the SDK on one of them, and the
Config program appeared.

Its not that its simply not putting it in the start menu, the MSCORCFG.MSC
for 2.0 is not on the PC.

Ouch! So maybe I should stick with .NET 1.1 and wait for .NET 2.1 to come
out :-)

On Tue, 29 Nov 2005 11:26:10 -0000, Ken Tucker [MVP] <vb***@bellsout h.net>
wrote:
Scott,

You only need the framework redist package.

32bit 23 megs
http://www.microsoft.com/downloads/d...displaylang=en

64bit x64 version 46 megs
http://www.microsoft.com/downloads/d...displaylang=en

64bit ia64 version 53 megs
http://www.microsoft.com/downloads/d...displaylang=en

Ken
------------------
"Scott H" <x@y.com> wrote in message
news:op******** *******@scottup stairs.custardg roup.co.uk...

I spent most of yesterday looking into this, and still didn't really
find
an answer...

I have a .NET2.0 app that I need to install on a server, and then
possibly
several other servers later, it requires access to LAN and internet. I
installed the 20mb Framework, then drop my program on there, but theres
no
Framework Configuration for 2.0 only the 1.1 version (MSCORCFG.MSC) so I
can't alter the security, and so my app fails to access the LAN etc.

I then tried copying the 2.0 MSCORCFG.MSC and DLL across to see if I can
run that, but it failed.

The only way I see of resolving this is to install the .NET2.0 SDK on
each
server and PC. All the applications I develop require LAN and Internet
access, and some require installing onto several PCs, so a 300mb
Download
isn't really acceptable.

Scott



Nov 29 '05 #4
"Scott H" <x@y.com> schrieb:
Sorry Ken, but Theres no "Framework 2.0 Configuration" when the 23mb
Framework is installed, so I can't alter the security, tried it on two
Windows 2003 Servers now, then I put the SDK on one of them, and the
Config program appeared.
You can actually still alter security by using the "CASPOL.EXE " command-line
tool which is IIRC still part of the .NET Framework. In large heterogenous
corporate networks it may be possible to deploy a security policy via an MSI
package alternatively:

How do I deploy my security policy?
<URL:http://staff.newtellig ence.net/michaelw/PermaLink.aspx? guid=b424f73a-f762-42e2-9046-edaa08a75b8c>
Its not that its simply not putting it in the start menu, the MSCORCFG.MSC
for 2.0 is not on the PC.


Maybe the control-panel applet has been removed because it has been rarely
used by "home users". I cannot imagine a home user changing security
settings for an assembly without reducing security by setting the wrong
options...

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 30 '05 #5

Thanks, I'll have a look at that URL, as I'm still not clear on that.

I have found a kind of solution that seems to work well, and I can't
belive how easy it is...there must be a catch :-)

The new "ClickOnce" technology. Not only does it install the framework if
required, but sets the security, installs a shortcut and updates itself,
all I have to do is "Publish"...Bri lliant!

It seems to be working well so far.

Scott


On Wed, 30 Nov 2005 00:35:35 -0000, Herfried K. Wagner [MVP]
<hi************ ***@gmx.at> wrote:
"Scott H" <x@y.com> schrieb:
Sorry Ken, but Theres no "Framework 2.0 Configuration" when the 23mb
Framework is installed, so I can't alter the security, tried it on two
Windows 2003 Servers now, then I put the SDK on one of them, and the
Config program appeared.


You can actually still alter security by using the "CASPOL.EXE "
command-line tool which is IIRC still part of the .NET Framework. In
large heterogenous corporate networks it may be possible to deploy a
security policy via an MSI package alternatively:

How do I deploy my security policy?
<URL:http://staff.newtellig ence.net/michaelw/PermaLink.aspx? guid=b424f73a-f762-42e2-9046-edaa08a75b8c>
Its not that its simply not putting it in the start menu, the
MSCORCFG.MSC for 2.0 is not on the PC.


Maybe the control-panel applet has been removed because it has been
rarely used by "home users". I cannot imagine a home user changing
security settings for an assembly without reducing security by setting
the wrong options...


Nov 30 '05 #6

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

Similar topics

0
1259
by: Roman Troshkov | last post by:
Hello, I Hope to see any opinions on this problem: After installing Net framework 2 on one of our Win2003 Web server I have experiencing trouble accessing MS SQL 2000 database. Configuration is: ASP.NET application is running on WEB server with application pool security account set to “Network Service”. This application accessing MS...
2
1329
by: D. Shane Fowlkes | last post by:
ASP.NET 2 (VB) I'm experimenting with MS VWD and .NET2. I'm tinkering with the Code Behind method as demonstrated on MS's tutorial at http://www.asp.net/QuickStart/aspnet/doc/pages/codebehind.aspx#codebehind . Yet, when I follow the example and apply it to my own little test, I get a server error of: Parser Error Message: Could not load...
1
1677
by: Winista | last post by:
I have a library that reads PDF file and manipilates its content. And I use SharpZip library to decompress the streams included in PDF file. All well and good. I have 3 lines of my test code that takes a PDF file and spits out the required content from the file. It all works fine in .Net.1. environment. Now I wrote the same 3 lines of code...
4
2506
by: hvj | last post by:
I need to run a .NET1.1 program in a .NET2.0 CLR. The .NET1.1 exe starts correctly in .NET2.0. Now I want to debug in Visual Studio 2005. But when I try to open the .NET1.1 project, Visual Studio wants to convert it to .NET2.0 what I don't want. How can I make Visual Studio open a .NET1.1 project for me in order to attach to a .NET2.0...
1
1169
by: Palani | last post by:
Hi I have started writing an ASP.NET2.0 FTP web client, I would like to use FTPWebRequest class. I am new to ASP.NET2.0. Can anybody help me with a sample ASP.NET application?
4
1927
by: dreamamit2001 | last post by:
Hi, I would like to know the ASP.NET2.0's(Controls, Menubar, Validations, Object Data Souce Controls, Treeview Control) compatibility with IE5.0 browser on Mac OS. If I don't use Client side Vbscript and Activex control, will the site developed in Asp.net2.0 work fine on IE5.0 Mac Os? Any body who has viewed the working of ASP.NET2.0 ...
3
1407
by: Marcus | last post by:
Hi, I converted my .Net1.1 application (written in VS2003) to a .Net2.0 application. I let VS2005 do the job as it suggested when trying to load my VS2003 project in VS2005. I then included the output exe from this project into my VS2005 setup project. I used it as a custom action. I then built the whole thing and installed it.
1
1322
by: =?Utf-8?B?SWJyYWhpbQ==?= | last post by:
I have probelm to deploy ASP.net2 Application implement in this Application the Virtual path provider techinque what I have done : 1- built the web Application with Asp.net2 as File system Application 2- Implement the Virtual path provider (Virtual path , virtual Directory , Virtual File) in this Application to call Virtual file or...
3
2703
by: cypherkro | last post by:
Hi I have a requirement to automatically download a file using a WebBrowser control without having the "Download File" pop up windows display. I cannot use Webclient!! I am using VS2005, .net2 and the application is a windows application. Does anyone have a solution to automatically downloading the file from a WebBrowser control. ...
0
7409
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7664
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7918
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
5981
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 projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5341
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 presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3446
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1897
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1022
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.