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?

Re: How can I verify .NET 2.0 installation??? by PvdG42

PvdG42
Wed Apr 23 08:44:16 CDT 2008

"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.


Re: How can I verify .NET 2.0 installation??? by C

C
Wed Apr 23 09:04:51 CDT 2008

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!