>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. - 23 Apr 2008 15:04 GMT
> >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
[quoted text clipped - 8 lines]
> 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!