What are the ways to pull info from an Access DB to powershell?
2 Answers
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.
Comments
You've already got an answer that works but also visit Richard Siddaway's Blog Of PowerShell and Other Things with the Access tag