<?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>Hey, Scripting Guy! How Can I Use Windows PowerShell to Create an Office Access Database?</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2009/02/16/how-can-i-use-windows-powershell-to-create-an-office-access-database.aspx</link><description>Hey, Scripting Guy! I have looked everywhere, and I cannot find a script that will create a new Microsoft Office Access database, and automatically add a new table and columns to it. If you had such a thing in Windows PowerShell it would be even better</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Hey, Scripting Guy! How Can I Use Windows PowerShell to Create an Office Access Database?</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2009/02/16/how-can-i-use-windows-powershell-to-create-an-office-access-database.aspx#3449110</link><pubDate>Thu, 25 Aug 2011 11:49:25 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3449110</guid><dc:creator>Justin Dearing</dc:creator><description>&lt;p&gt;That&amp;#39;s a great script. Personally I am not a fan of doing COM interop with Office if it is avoidable. Its high overhead. I wrote a blog post on how to create an Access Database with Powershell without Access installed (&lt;a rel="nofollow" target="_new" href="http://www.justaprogrammer.net/2011/08/25/creating-an-access-database-in-powershell-without-access-installed/"&gt;www.justaprogrammer.net/.../creating-an-access-database-in-powershell-without-access-installed&lt;/a&gt;). I had a few headaches getting there, but it works pretty good now.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3449110" width="1" height="1"&gt;</description></item><item><title>re: Hey, Scripting Guy! How Can I Use Windows PowerShell to Create an Office Access Database?</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2009/02/16/how-can-i-use-windows-powershell-to-create-an-office-access-database.aspx#3376249</link><pubDate>Tue, 21 Dec 2010 02:32:19 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3376249</guid><dc:creator>Hitchheik@hotmail.com</dc:creator><description>&lt;p&gt;# *** Needed for 64-bit computer to make/update table in Access ***&lt;/p&gt;
&lt;p&gt;$erroractionpreference = &amp;quot;SilentlyContinue&amp;quot;&lt;/p&gt;
&lt;p&gt;if ($env:Processor_Architecture -ne &amp;quot;x86&amp;quot;)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;write-warning &amp;quot;Running x86 PowerShell...&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;amp;&amp;quot;$env:WINDIR\syswow64\windowspowershell\v1.0\powershell.exe&amp;quot; -NonInteractive -noprofile -file $myinvocation.Mycommand.path -executionpolicy bypass&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;exit&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;# *** Entry Point to Script ***&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3376249" width="1" height="1"&gt;</description></item></channel></rss>