How can I verify .NET 2.0 installation???

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?
 
P

PvdG42

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

C.R.

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top