<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How Can I Determine Which Version of Word is Installed on a Computer?</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2005/01/10/how-can-i-determine-which-version-of-word-is-installed-on-a-computer.aspx</link><description>Hey, Scripting Guy! How can I determine which version of Word is installed on a computer? -- RR 
 Hey, RR. Turns out that this is a trickier question than you might expect. That’s because WMI does only a so-so job of retrieving information about the</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: How Can I Determine Which Version of Word is Installed on a Computer?</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2005/01/10/how-can-i-determine-which-version-of-word-is-installed-on-a-computer.aspx#3457842</link><pubDate>Fri, 07 Oct 2011 08:44:13 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3457842</guid><dc:creator>Neal</dc:creator><description>&lt;p&gt;Just get this registry get value and grab the version number from the end&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim keyPath As String = &amp;quot;CLSID\{000209FF-0000-0000-C000-000000000046}\ProgID&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim regKey As Microsoft.Win32.RegistryKey = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(keyPath, False)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim data As String = CType(regKey.GetValue(Nothing, defaultVersion), String)&lt;/p&gt;
&lt;p&gt;I&amp;#39;m sure you can do the same in script&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3457842" width="1" height="1"&gt;</description></item><item><title>re: How Can I Determine Which Version of Word is Installed on a Computer?</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2005/01/10/how-can-i-determine-which-version-of-word-is-installed-on-a-computer.aspx#3346303</link><pubDate>Fri, 23 Jul 2010 14:30:45 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3346303</guid><dc:creator>Cascader</dc:creator><description>&lt;p&gt;There are two potential problems with this approach:&lt;/p&gt;
&lt;p&gt;1) If you use CreateObject instead of GetObject(, &amp;quot;Word.Application&amp;quot;), you might close a previously opened (i.e. by the user) instance of word.&lt;/p&gt;
&lt;p&gt;2) If a message appears beacause of an error (i.e. the office activation wizard or a warning message etc) while the window is invisible, you application or script will hang...&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3346303" width="1" height="1"&gt;</description></item></channel></rss>