What are the ways to pull info from an Access DB to powershell?
views:
48answers:
2
+1
A:
There isn't a built-in cmdlet to do this. However you still have several options.
Use sqlcmd.exe - it stills works in PowerShell
Use Invoke-AdoCommand - this is in the PowerShell Community Extensions
Drop down to the ADO.NET classes and program it.
Fortunately somebody else has written up that last one.
Keith Hill
2010-08-23 14:56:22
Thanks Keith, that last one worked out well for me.
MattUebel
2010-08-23 20:01:23
+1
A:
You've already got an answer that works but also visit Richard Siddaway's Blog Of PowerShell and Other Things with the Access tag
Tony Toews
2010-08-23 23:26:29