Find which machines do NOT have .NET Framework installed

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to include something in our 200+ users' login scripts that will tell
us which machines do not have the .NET Framework installed.

Anyone done this before?

What file can I look for?

TIA........cindy
 
cindy said:
I need to include something in our 200+ users' login scripts that will tell
us which machines do not have the .NET Framework installed.

Anyone done this before?

What file can I look for?


If you can check for regisrty keys you can try this:

HKLM, 'SOFTWARE\Microsoft\.NETFramework\policy\v1.1'

or this to check for the 1.0 framework

HKLM, 'SOFTWARE\Microsoft\.NETFramework\policy\v1.0'


Best Regards,


Jeroen Vandezande
 
Thanks, I will give it a try.

Jeroen Vandezande said:
If you can check for regisrty keys you can try this:

HKLM, 'SOFTWARE\Microsoft\.NETFramework\policy\v1.1'

or this to check for the 1.0 framework

HKLM, 'SOFTWARE\Microsoft\.NETFramework\policy\v1.0'


Best Regards,


Jeroen Vandezande
 
Back
Top