473,396 Members | 1,671 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.

.net FrameWork 1.1

I have two computers both running Windows XP Professional. The computer on
which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
1.050.00mb. On the other computer, Framework 1.1 is installed and listed as
only 36.14mb. Why the difference. I do note that some applications do not
work on the one with 36.14mb sized Framework 1.1.
--
Dennis in Houston
Nov 21 '05 #1
8 1381
The frameword redistributale is 23.1 MB. The framework 1.1 SP1 is 10.3 MB for
the installation package

Have I misunderstood your question?

"Dennis" wrote:
I have two computers both running Windows XP Professional. The computer on
which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
1.050.00mb. On the other computer, Framework 1.1 is installed and listed as
only 36.14mb. Why the difference. I do note that some applications do not
work on the one with 36.14mb sized Framework 1.1.
--
Dennis in Houston

Nov 21 '05 #2
Dennis,
VS.NET normally installs the Framework SDK, which includes a number of tools
for creating .NET application.

The second computer sounds like it only has the Framework runtime
(redistributable) installed.

It sounds like the first machine is reporting .NET, the SDK & VS.NET, while
the second machine is reporting only the runtime.

I do note that some applications do not
work on the one with 36.14mb sized Framework 1.1.
How specifically do they not work? It may be a configuration (your app) or
security thing, rather then Framework itself per se...

Hope this helps
Jay
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:1A**********************************@microsof t.com...I have two computers both running Windows XP Professional. The computer on
which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
1.050.00mb. On the other computer, Framework 1.1 is installed and listed
as
only 36.14mb. Why the difference. I do note that some applications do
not
work on the one with 36.14mb sized Framework 1.1.
--
Dennis in Houston

Nov 21 '05 #3
Jay, the following code runs on both computers but on my computer (Comp1)
with Vs.Net installed, I get all the drives including any mapped drives in
the array dr and all the shared folders on my network in the sdr array.
However, when I run this on my computer (Comp2) that only has the
redistributable Framework 1.1, I only get the Root Drive "c:" returned in dr
and nothing in sdr. On Comp2, I have my hard drive partitioned into two
drives but I stll only get the "c:" returned in dr and not the partitioned.
Any ideas as to why does this works on Comp1 and not Comp2?

Note that I have shared folders on both computers and drives mapped from
each to the other.

'This Gets all Drives including Mapped Drives on Comp1 but only "c:" on Comp2
Dim dr() As String
Dim i, k, j As Integer
Dim id As String
Dim searcher As New ManagementObjectSearcher("SELECT * FROM _
Win32_LogicalDisk") 'for logical Disks
Dim ManObjOp As ManagementObject
i = searcher.Get.Count
If searcher.Get.Count > 1 Then
ReDim dr(i - 1)
For Each ManObjOp In searcher.Get
dr(k) = (ManObjOp("DeviceID").ToString)
Next
end if

'This gets all Shared Drives and Folders ok on Comp1 but nothing on Comp2
Dim sdr() as string
Dim o As IWshNetwork2 = CType(CreateObject("WScript.Network"), _ IWshNetwork2)
Dim odrives As WshCollection = CType(o.EnumNetworkDrives, WshCollection)
If odrives.Count > 0 Then
ReDim sdr(CInt(odrives.Count / 2))
For i = 0 To odrives.Count - 1 Step 2
sdr(i) = odrives.Item(i + 1).ToString.ToLower
Next
end if

"Jay B. Harlow [MVP - Outlook]" wrote:
Dennis,
VS.NET normally installs the Framework SDK, which includes a number of tools
for creating .NET application.

The second computer sounds like it only has the Framework runtime
(redistributable) installed.

It sounds like the first machine is reporting .NET, the SDK & VS.NET, while
the second machine is reporting only the runtime.

I do note that some applications do not
work on the one with 36.14mb sized Framework 1.1.


How specifically do they not work? It may be a configuration (your app) or
security thing, rather then Framework itself per se...

Hope this helps
Jay
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:1A**********************************@microsof t.com...
I have two computers both running Windows XP Professional. The computer on
which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
1.050.00mb. On the other computer, Framework 1.1 is installed and listed
as
only 36.14mb. Why the difference. I do note that some applications do
not
work on the one with 36.14mb sized Framework 1.1.
--
Dennis in Houston


Nov 21 '05 #4
Dennis,
This sounds like a WMI problem & not a .NET problem per se.

As WMI & WScript.Network are returning the results to you.

The following KB article sounds like your problem:

http://support.microsoft.com/default...b;en-us;303209

At least the "connected" part of the problem...

You may want to try the WScript.Network logic in a VBScript file to see if
you get the same results. If you get the same results then you know its not
a Framework problem!

Hope this helps
Jay

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:DC**********************************@microsof t.com...
Jay, the following code runs on both computers but on my computer (Comp1)
with Vs.Net installed, I get all the drives including any mapped drives in
the array dr and all the shared folders on my network in the sdr array.
However, when I run this on my computer (Comp2) that only has the
redistributable Framework 1.1, I only get the Root Drive "c:" returned in
dr
and nothing in sdr. On Comp2, I have my hard drive partitioned into two
drives but I stll only get the "c:" returned in dr and not the
partitioned.
Any ideas as to why does this works on Comp1 and not Comp2?

Note that I have shared folders on both computers and drives mapped from
each to the other.

'This Gets all Drives including Mapped Drives on Comp1 but only "c:" on
Comp2
Dim dr() As String
Dim i, k, j As Integer
Dim id As String
Dim searcher As New ManagementObjectSearcher("SELECT * FROM _
Win32_LogicalDisk") 'for logical Disks
Dim ManObjOp As ManagementObject
i = searcher.Get.Count
If searcher.Get.Count > 1 Then
ReDim dr(i - 1)
For Each ManObjOp In searcher.Get
dr(k) = (ManObjOp("DeviceID").ToString)
Next
end if

'This gets all Shared Drives and Folders ok on Comp1 but nothing on Comp2
Dim sdr() as string
Dim o As IWshNetwork2 = CType(CreateObject("WScript.Network"), _
IWshNetwork2)
Dim odrives As WshCollection = CType(o.EnumNetworkDrives, WshCollection)
If odrives.Count > 0 Then
ReDim sdr(CInt(odrives.Count / 2))
For i = 0 To odrives.Count - 1 Step 2
sdr(i) = odrives.Item(i + 1).ToString.ToLower
Next
end if

<<snip>>
Nov 21 '05 #5
Doh!
you get the same results. If you get the same results then you know its
not a Framework problem! The same results as the .NET on comp2 is giving that is :-)

Jay

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl... Dennis,
This sounds like a WMI problem & not a .NET problem per se.

As WMI & WScript.Network are returning the results to you.

The following KB article sounds like your problem:

http://support.microsoft.com/default...b;en-us;303209

At least the "connected" part of the problem...

You may want to try the WScript.Network logic in a VBScript file to see if
you get the same results. If you get the same results then you know its
not a Framework problem!

Hope this helps
Jay

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:DC**********************************@microsof t.com...
Jay, the following code runs on both computers but on my computer (Comp1)
with Vs.Net installed, I get all the drives including any mapped drives
in
the array dr and all the shared folders on my network in the sdr array.
However, when I run this on my computer (Comp2) that only has the
redistributable Framework 1.1, I only get the Root Drive "c:" returned in
dr
and nothing in sdr. On Comp2, I have my hard drive partitioned into two
drives but I stll only get the "c:" returned in dr and not the
partitioned.
Any ideas as to why does this works on Comp1 and not Comp2?

Note that I have shared folders on both computers and drives mapped from
each to the other.

'This Gets all Drives including Mapped Drives on Comp1 but only "c:" on
Comp2
Dim dr() As String
Dim i, k, j As Integer
Dim id As String
Dim searcher As New ManagementObjectSearcher("SELECT * FROM _
Win32_LogicalDisk") 'for logical Disks
Dim ManObjOp As ManagementObject
i = searcher.Get.Count
If searcher.Get.Count > 1 Then
ReDim dr(i - 1)
For Each ManObjOp In searcher.Get
dr(k) = (ManObjOp("DeviceID").ToString)
Next
end if

'This gets all Shared Drives and Folders ok on Comp1 but nothing on Comp2
Dim sdr() as string
Dim o As IWshNetwork2 = CType(CreateObject("WScript.Network"), _
IWshNetwork2)
Dim odrives As WshCollection = CType(o.EnumNetworkDrives, WshCollection)
If odrives.Count > 0 Then
ReDim sdr(CInt(odrives.Count / 2))
For i = 0 To odrives.Count - 1 Step 2
sdr(i) = odrives.Item(i + 1).ToString.ToLower
Next
end if

<<snip>>

Nov 21 '05 #6
Dennis,
I should add that microsoft.public.dotnet.framework.wmi might be a better
newsgroup to ask about the first problem. Again I suspect it is a "problem"
with WMI, at least your expectations of what WMI should & should not return,
rather then the framework itself.

Unfortunately I WScript & WMI so little I'm not much more help.

Hope this helps
Jay

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:DC**********************************@microsof t.com...
Jay, the following code runs on both computers but on my computer (Comp1)
with Vs.Net installed, I get all the drives including any mapped drives in
the array dr and all the shared folders on my network in the sdr array.
However, when I run this on my computer (Comp2) that only has the
redistributable Framework 1.1, I only get the Root Drive "c:" returned in
dr
and nothing in sdr. On Comp2, I have my hard drive partitioned into two
drives but I stll only get the "c:" returned in dr and not the
partitioned.
Any ideas as to why does this works on Comp1 and not Comp2?

Note that I have shared folders on both computers and drives mapped from
each to the other.

'This Gets all Drives including Mapped Drives on Comp1 but only "c:" on
Comp2
Dim dr() As String
Dim i, k, j As Integer
Dim id As String
Dim searcher As New ManagementObjectSearcher("SELECT * FROM _
Win32_LogicalDisk") 'for logical Disks
Dim ManObjOp As ManagementObject
i = searcher.Get.Count
If searcher.Get.Count > 1 Then
ReDim dr(i - 1)
For Each ManObjOp In searcher.Get
dr(k) = (ManObjOp("DeviceID").ToString)
Next
end if

'This gets all Shared Drives and Folders ok on Comp1 but nothing on Comp2
Dim sdr() as string
Dim o As IWshNetwork2 = CType(CreateObject("WScript.Network"), _
IWshNetwork2)
Dim odrives As WshCollection = CType(o.EnumNetworkDrives, WshCollection)
If odrives.Count > 0 Then
ReDim sdr(CInt(odrives.Count / 2))
For i = 0 To odrives.Count - 1 Step 2
sdr(i) = odrives.Item(i + 1).ToString.ToLower
Next
end if

"Jay B. Harlow [MVP - Outlook]" wrote:
Dennis,
VS.NET normally installs the Framework SDK, which includes a number of
tools
for creating .NET application.

The second computer sounds like it only has the Framework runtime
(redistributable) installed.

It sounds like the first machine is reporting .NET, the SDK & VS.NET,
while
the second machine is reporting only the runtime.

> I do note that some applications do not
> work on the one with 36.14mb sized Framework 1.1.


How specifically do they not work? It may be a configuration (your app)
or
security thing, rather then Framework itself per se...

Hope this helps
Jay
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:1A**********************************@microsof t.com...
>I have two computers both running Windows XP Professional. The computer
>on
> which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
> 1.050.00mb. On the other computer, Framework 1.1 is installed and
> listed
> as
> only 36.14mb. Why the difference. I do note that some applications do
> not
> work on the one with 36.14mb sized Framework 1.1.
> --
> Dennis in Houston


Nov 21 '05 #7
Thanks Jay. What I'm really trying to do is get a listing of all Drives
including mapped drives as well as any Network Shared Folders or Shared
Drives. I'll check the newsgroup you suggested and look at some API's as
well. The System.IO.Directory.GetLogicalDrives does at least return all
Drives including the Mapped ones and I can get the Drive Type from the
GetDriveTypeA API.

"Jay B. Harlow [MVP - Outlook]" wrote:
Dennis,
I should add that microsoft.public.dotnet.framework.wmi might be a better
newsgroup to ask about the first problem. Again I suspect it is a "problem"
with WMI, at least your expectations of what WMI should & should not return,
rather then the framework itself.

Unfortunately I WScript & WMI so little I'm not much more help.

Hope this helps
Jay

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:DC**********************************@microsof t.com...
Jay, the following code runs on both computers but on my computer (Comp1)
with Vs.Net installed, I get all the drives including any mapped drives in
the array dr and all the shared folders on my network in the sdr array.
However, when I run this on my computer (Comp2) that only has the
redistributable Framework 1.1, I only get the Root Drive "c:" returned in
dr
and nothing in sdr. On Comp2, I have my hard drive partitioned into two
drives but I stll only get the "c:" returned in dr and not the
partitioned.
Any ideas as to why does this works on Comp1 and not Comp2?

Note that I have shared folders on both computers and drives mapped from
each to the other.

'This Gets all Drives including Mapped Drives on Comp1 but only "c:" on
Comp2
Dim dr() As String
Dim i, k, j As Integer
Dim id As String
Dim searcher As New ManagementObjectSearcher("SELECT * FROM _
Win32_LogicalDisk") 'for logical Disks
Dim ManObjOp As ManagementObject
i = searcher.Get.Count
If searcher.Get.Count > 1 Then
ReDim dr(i - 1)
For Each ManObjOp In searcher.Get
dr(k) = (ManObjOp("DeviceID").ToString)
Next
end if

'This gets all Shared Drives and Folders ok on Comp1 but nothing on Comp2
Dim sdr() as string
Dim o As IWshNetwork2 = CType(CreateObject("WScript.Network"), _
IWshNetwork2)
Dim odrives As WshCollection = CType(o.EnumNetworkDrives, WshCollection)
If odrives.Count > 0 Then
ReDim sdr(CInt(odrives.Count / 2))
For i = 0 To odrives.Count - 1 Step 2
sdr(i) = odrives.Item(i + 1).ToString.ToLower
Next
end if

"Jay B. Harlow [MVP - Outlook]" wrote:
Dennis,
VS.NET normally installs the Framework SDK, which includes a number of
tools
for creating .NET application.

The second computer sounds like it only has the Framework runtime
(redistributable) installed.

It sounds like the first machine is reporting .NET, the SDK & VS.NET,
while
the second machine is reporting only the runtime.
> I do note that some applications do not
> work on the one with 36.14mb sized Framework 1.1.

How specifically do they not work? It may be a configuration (your app)
or
security thing, rather then Framework itself per se...

Hope this helps
Jay
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:1A**********************************@microsof t.com...
>I have two computers both running Windows XP Professional. The computer
>on
> which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
> 1.050.00mb. On the other computer, Framework 1.1 is installed and
> listed
> as
> only 36.14mb. Why the difference. I do note that some applications do
> not
> work on the one with 36.14mb sized Framework 1.1.
> --
> Dennis in Houston


Nov 21 '05 #8
Thanks Jay. What I'm really trying to do is get a listing of all Drives
including mapped drives as well as any Network Shared Folders or Shared
Drives. I'll check the newsgroup you suggested and look at some API's as
well. The System.IO.Directory.GetLogicalDrives does at least return all
Drives including the Mapped ones and I can get the Drive Type from the
GetDriveTypeA API.

"Jay B. Harlow [MVP - Outlook]" wrote:
Dennis,
I should add that microsoft.public.dotnet.framework.wmi might be a better
newsgroup to ask about the first problem. Again I suspect it is a "problem"
with WMI, at least your expectations of what WMI should & should not return,
rather then the framework itself.

Unfortunately I WScript & WMI so little I'm not much more help.

Hope this helps
Jay

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:DC**********************************@microsof t.com...
Jay, the following code runs on both computers but on my computer (Comp1)
with Vs.Net installed, I get all the drives including any mapped drives in
the array dr and all the shared folders on my network in the sdr array.
However, when I run this on my computer (Comp2) that only has the
redistributable Framework 1.1, I only get the Root Drive "c:" returned in
dr
and nothing in sdr. On Comp2, I have my hard drive partitioned into two
drives but I stll only get the "c:" returned in dr and not the
partitioned.
Any ideas as to why does this works on Comp1 and not Comp2?

Note that I have shared folders on both computers and drives mapped from
each to the other.

'This Gets all Drives including Mapped Drives on Comp1 but only "c:" on
Comp2
Dim dr() As String
Dim i, k, j As Integer
Dim id As String
Dim searcher As New ManagementObjectSearcher("SELECT * FROM _
Win32_LogicalDisk") 'for logical Disks
Dim ManObjOp As ManagementObject
i = searcher.Get.Count
If searcher.Get.Count > 1 Then
ReDim dr(i - 1)
For Each ManObjOp In searcher.Get
dr(k) = (ManObjOp("DeviceID").ToString)
Next
end if

'This gets all Shared Drives and Folders ok on Comp1 but nothing on Comp2
Dim sdr() as string
Dim o As IWshNetwork2 = CType(CreateObject("WScript.Network"), _
IWshNetwork2)
Dim odrives As WshCollection = CType(o.EnumNetworkDrives, WshCollection)
If odrives.Count > 0 Then
ReDim sdr(CInt(odrives.Count / 2))
For i = 0 To odrives.Count - 1 Step 2
sdr(i) = odrives.Item(i + 1).ToString.ToLower
Next
end if

"Jay B. Harlow [MVP - Outlook]" wrote:
Dennis,
VS.NET normally installs the Framework SDK, which includes a number of
tools
for creating .NET application.

The second computer sounds like it only has the Framework runtime
(redistributable) installed.

It sounds like the first machine is reporting .NET, the SDK & VS.NET,
while
the second machine is reporting only the runtime.
> I do note that some applications do not
> work on the one with 36.14mb sized Framework 1.1.

How specifically do they not work? It may be a configuration (your app)
or
security thing, rather then Framework itself per se...

Hope this helps
Jay
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:1A**********************************@microsof t.com...
>I have two computers both running Windows XP Professional. The computer
>on
> which I have Vs.Net 2003 has Framework 1.1 installed which is listed as
> 1.050.00mb. On the other computer, Framework 1.1 is installed and
> listed
> as
> only 36.14mb. Why the difference. I do note that some applications do
> not
> work on the one with 36.14mb sized Framework 1.1.
> --
> Dennis in Houston


Nov 21 '05 #9

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

Similar topics

0
by: Ravindra | last post by:
Well I installed the framework provided by microsoft , the problem is I am able to activate the smart tag in the doc file but when I Click on the Show Detils option in the information bridge the...
3
by: CMan | last post by:
Hi, We are currently trying to install .Net Framework v.1.1 on a server which already has v1.0. We are receiving the following error. Error 1704.An installation for Microsoft .NET Framework...
18
by: Cameron Laird | last post by:
QOTW: "... So I started profiling the code and the slowdown was actually taking place at places where I didn't expect it." -- Guyon Mor?e (and about twenty-three thousand others) " suggestion...
6
by: Joseph Geretz | last post by:
I recently upgraded my server to Windows 2003. The first thing I noticed is that my sample WebService pages no longer worked. The Invoke test button is missing. This is addresed by the following KB...
9
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My...
1
by: Harry Simpson | last post by:
I know I drilled down into the Windows folder\Microsoft.net\Framework\v1.1.4322 folder and looked at the version of Mscorcfg.dll to get the SP level from the version number: Mine shows...
3
by: Shadow Lynx | last post by:
At the bottom of the default Error page that appears when Unhandled Exceptions occur, what exactly is the difference between the "Microsoft ..Net Framework Version" and the "ASP.NET Version"? I...
3
dmjpro
by: dmjpro | last post by:
plz send me a good link which can clearify me how the J2EE framework works i want the details information .... plz help thanx
13
by: dancer | last post by:
I have made a new post because when I try to respond to another, I get the error, "Article Rejected -- Ill-formed message id" This is in response to the advice of Juan Libre to install Net...
8
by: Blasting Cap | last post by:
I'm using VS 2005, and have a dll in some code (system.core.dll) that was included in something someone sent me to run on my system. I have production on a server using Framework 2.0 that I want...
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: 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: 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
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
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.