■ 설치 닷넷 프레임워크 버전의 리스트를 구하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
using Microsoft.Win32; using System; using System.Collections.Generic; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { Console.Title = "설치 닷넷 프레임워크 버전 리스트 구하기"; List<string> versionList = GetDotNetFrameworkVersionList(); foreach(string version in versionList) { Console.WriteLine(version); } } #endregion #region 닷넷 프레임워크 버전 리스트 구하기 - GetDotNetFrameworkVersionList() /// <summary> /// 닷넷 프레임워크 버전 리스트 구하기 /// </summary> /// <returns>닷넷 프레임워크 버전 리스트</returns> private static List<string> GetDotNetFrameworkVersionList() { List<string> list = new List<string>(); using ( RegistryKey ndpRegistryKey = RegistryKey.OpenRemoteBaseKey ( RegistryHive.LocalMachine, string.Empty ).OpenSubKey(@"SOFTWARE\Microsoft\NET Framework Setup\NDP\") ) { foreach(string versionKeyName in ndpRegistryKey.GetSubKeyNames()) { if(versionKeyName.StartsWith("v")) { RegistryKey versionKey = ndpRegistryKey.OpenSubKey(versionKeyName); string version = versionKey.GetValue("Version", string.Empty).ToString(); string sp = versionKey.GetValue("SP" , string.Empty).ToString(); string install = versionKey.GetValue("Install", string.Empty).ToString(); if(install == string.Empty) { list.Add($"{versionKeyName} {version}"); } else { if(sp != string.Empty && install == "1") { list.Add($"{versionKeyName} {version} SP{sp}"); } } if(version != string.Empty) { continue; } foreach(string subKeyName in versionKey.GetSubKeyNames()) { RegistryKey subRegistryKey = versionKey.OpenSubKey(subKeyName); version = (string)subRegistryKey.GetValue("Version", string.Empty); if(version != string.Empty) { sp = subRegistryKey.GetValue("SP", "").ToString(); } install = subRegistryKey.GetValue("Install", string.Empty).ToString(); if(install != string.Empty) { list.Add($"{versionKeyName} {version}"); } else { if(sp != string.Empty && install == "1") { list.Add($" {subKeyName} {version} SP{sp}"); } else if(install == "1") { list.Add($" {subKeyName} {version}"); } } } } } } return list; } #endregion } } |