How to detect if your computer has the. NET Framework installed
Source: Internet
Author: User
Check to see if there are any MSCOREE.DLL files under/%windir%/system32/If there is already an FM installed on the name
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\. Netframework\policy can be inspected to install those versions of FM on the machine
Specific functions:
Public Function doesdotnetframeworkexist (ByVal udeversion as dotnetframeworkversions) as Boolean
Dim O_blnret as Boolean
Dim O_strret as String
With New CRegistry
. HKEY = HKEY_LOCAL_MACHINE
. KeyPath = "Software\microsoft\." NETFramework "
If. Doeskeyexist () Then
. KeyPath = "Software\microsoft\." NETFramework "
O_strret = GetRegValue (. GetRegistryValue ("InstallRoot", ""))
O_blnret = (O_strret <> "")
If O_blnret Then
With New Cfilefuncs
Select Case Udeversion
Case DnfvV1
O_blnret =. Doesfileexistex (O_strret & "V1.0.3705\mscorlib.dll")
Case Dnfvv1_1
O_blnret =. Doesfileexistex (O_strret & "V1.1.4322\mscorlib.dll")
Case Dnfvvany
O_blnret =. Doesfileexistex (O_strret & "V1.0.3705\mscorlib.dll")
If O_blnret Then
Else
O_blnret =. Doesfileexistex (O_strret & "V1.1.4322\mscorlib.dll")
End If
End Select
End With
Else
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.