Type officeType = Type.GetTypeFromProgID("Word.Application"); if (officeType == null) { // Word is not installed. // Show message or alert that Word is not installed. } else { // Word is installed. // Continue your work. }