What are the way开发者_开发百科s to pull info from an Access DB to powershell?
There isn't a built-in cmdlet to do this. However you still have several options.
Use sqlcmd.exe - it stills works in PowerShell
SQL PowerShell Extensions
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.
You've already got an answer that works but also visit Richard Siddaway's Blog Of PowerShell and Other Things with the Access tag
精彩评论