views:

38

answers:

1

I'd like to send a chipcard command (an APDU) to a chipcard and read the response from the chipcard.

Because there should be no extra install on the windows system, I'd like to do it within windows powershell.

Is there an easy way to do this?

+1  A: 

I would suggest you find a .NET component capable of sending commands to an APDU. Here's an example of a for pay component. Once you have a .NET component it should be pretty easy to use from PowerShell sans a few known issues like not be able to easily call generic methods and not being able to create classes/implement interfaces in PowerShell script.

Keith Hill
Thanks for the link.
tangens