How can I verify .NET 2.0 installation???

  • Thread starter Thread starter C.R.
  • Start date Start date
C

C.R.

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?
 
C.R. said:
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.
 
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!
 
Back
Top