Exception automating Excel 2007 with Powershell when calling Workbooks.Add() - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:44:26Z http://stackoverflow.com/feeds/question/687891 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/687891/exception-automating-excel-2007-with-powershell-when-calling-workbooks-add 1 Exception automating Excel 2007 with Powershell when calling Workbooks.Add() guillermooo 2009-03-26T23:05:58Z 2009-03-28T23:30:39Z <p>The following code throws an exception in Powershell V1 (Excel 2007):</p> <pre><code>$E = New-Object -COM "Excel.Application" $E.Visible = $True $wb = $E.Workbooks.Add() #&lt;&lt;&lt;Exception here </code></pre> <p>The error says that the format might be old or that the type library is not valid (translated from Spanish). A similar script for Word works just fine.</p> http://stackoverflow.com/questions/687891/exception-automating-excel-2007-with-powershell-when-calling-workbooks-add/688142#688142 2 Answer by jachymko for Exception automating Excel 2007 with Powershell when calling Workbooks.Add() jachymko 2009-03-27T01:04:35Z 2009-03-27T01:04:35Z <p>Office interop assemblies seem to have this problem when the current culture is not en-US. The obvious workaround is to set the culture.</p> <p>It's important to run the whole thing as a single command on the interactive console, since PowerShell V1 always creates a new thread for each command invocation.</p> <pre><code>PS C:\Users\jachymko&gt; $e = new-object -com excel.application PS C:\Users\jachymko&gt; $e.workbooks.add() Exception calling "Add" with "0" argument(s): "Old format or invalid type library. (Exception from HRESULT: 0x80028018 (TYPE_E_INVDATAREAD))" At line:1 char:17 + $e.workbooks.add &lt;&lt;&lt;&lt; () + CategoryInfo : NotSpecified: (:) [], MethodInvocationException + FullyQualifiedErrorId : ComMethodTargetInvocation PS C:\Users\jachymko&gt; &amp; { &gt;&gt; [threading.thread]::CurrentThread.CurrentCulture = 'en-US' &gt;&gt; $e = new-object -com excel.application &gt;&gt; $e.workbooks.add() &gt;&gt; $e.visible=1 &gt;&gt; } &gt;&gt; </code></pre> http://stackoverflow.com/questions/687891/exception-automating-excel-2007-with-powershell-when-calling-workbooks-add/693107#693107 1 Answer by guillermooo for Exception automating Excel 2007 with Powershell when calling Workbooks.Add() guillermooo 2009-03-28T17:05:31Z 2009-03-28T23:30:39Z <p>Adapted to Powershell from one of the solutions proposed in <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;320369" rel="nofollow">MS Help and Support Article 320369</a>.</p> <pre><code>$ci = new-object system.globalization.cultureinfo "en-US" $e = New-Object -COM "Excel.Application" $e.Visible = $True $e.UserControl= $True $books = $e.Workbooks $books.PSBase.GetType().InvokeMember( ` "Add", ` [system.reflection.bindingflags]::InvokeMethod, ` $null, $books, $null, $ci) </code></pre> <p>From the same article:</p> <blockquote> <p>When you use one of these workarounds for a computer where the regional settings do not match the current language version of Office, you should be familiar with how Excel behaves and how Excel will interpret data that might be formatted for a specific locale. </p> </blockquote>