c# Programming Glossary: installroot
How to detect installed version of MS-Office? http://stackoverflow.com/questions/3266675/how-to-detect-installed-version-of-ms-office for the installed Office version would be to check the InstallRoot registry keys for the Office applications of interest. For example.. Registry key HKLM Software Microsoft Office 12.0 Word InstallRoot Path This entry contains the path to the executable. Replace.. similar keys HKLM Software Microsoft Office 12.0 Excel InstallRoot Path HKLM Software Microsoft Office 12.0 PowerPoint InstallRoot..
Getting the .NET Framework directory path http://stackoverflow.com/questions/375860/getting-the-net-framework-directory-path for the framework string installRoot netFramework.GetValue InstallRoot .ToString Retrieve the version of the framework executing this..
C#: How to know whether certain Office 2003 or 2007 application is installed? http://stackoverflow.com/questions/531659/c-how-to-know-whether-certain-office-2003-or-2007-application-is-installed location at HKLM SOFTWARE Microsoft Office 12.0 Word InstallRoot . This doesn't help you if you're planning on using the interop..
|