////// 오피스의 비트를 반환합니다. (현재 오피스 2010만 지원) /// ///비트를 반환합니다. 정보를 얻을 수 없을 때는 0을 반환 public static int GetBitness() { string registryKey = "Software\\Microsoft\\Office\\14.0\\Outlook"; RegistryKey officeKey = Registry.LocalMachine.OpenSubKey(registryKey); if (officeKey != null) { string bitness = (string)officeKey.GetValue("Bitness"); switch (bitness) { case "x86": return 32; case "x64": return 64; } } return 0; }
'In the Hood' 카테고리의 다른 글
팁: LYNC 클라이언트 대신 웹앱 강제로 띄우기 (0) | 2014.03.20 |
---|---|
IIS7 에서 업로드 파일 사이즈 제한 변경하기 (5) | 2010.04.29 |
In the Hood 카테고리는? (0) | 2010.04.29 |