[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework

How can I verify .NET 2.0 installation???

C.R.

4/23/2008 1:03:00 PM

I have found ways by checking the registry, but we have hundreds of
computers. I have a powershell script that can verify the presence of
folders and files. Is there one specific file or folder that .NET 2.0
installs that I can check for?
2 Answers

PvdG42

4/23/2008 1:44:00 PM

0

"C.R." <ned4spd8874@gmail.com> wrote in message
news:4c88a8ea-31b1-42af-b2c1-80c10a9f41ae@a23g2000hsc.googlegroups.com...
>I have found ways by checking the registry, but we have hundreds of
> computers. I have a powershell script that can verify the presence of
> folders and files. Is there one specific file or folder that .NET 2.0
> installs that I can check for?


You can try this...

C:(or your Windows install drive)\Windows\Microsoft.NET\Framework\v2.0.50727

To avoid the possibility of failure from different patch levels on different
machines, you might check for a partial folder name like v2.0.* at the
designated location.

C.R.

4/23/2008 2:05:00 PM

0

On Apr 23, 9:44 am, "PvdG42" <p...@toadstool.edu> wrote:
> "C.R." <ned4spd8...@gmail.com> wrote in message
>
> news:4c88a8ea-31b1-42af-b2c1-80c10a9f41ae@a23g2000hsc.googlegroups.com...
>
> >I have found ways by checking the registry, but we have hundreds of
> > computers. I have a powershell script that can verify the presence of
> > folders and files. Is there one specific file or folder that .NET 2.0
> > installs that I can check for?
>
> You can try this...
>
> C:(or your Windows install drive)\Windows\Microsoft.NET\Framework\v2.0.50727
>
> To avoid the possibility of failure from different patch levels on different
> machines, you might check for a partial folder name like v2.0.* at the
> designated location.

Thanks! That will probably work. I'm not a PowerShell expert, so I'm
going to have to wait until my co-worker gets in to add it. I tried,
but I'm getting errors.

In any case, thank you very much!