我已经让这个软件在生产中运行多年,以前从未见过这个问题。我刚刚收到了一台内置 Alcor Micro USB 智能卡读卡器 的新笔记本电脑(HP EliteBook 8470p)。

下面的代码将列出系统上的所有读者,似乎工作正常。我们的某些系统会将 3 或 4 个阅读器插入到一台计算机中。它已经用十几个模型进行了测试,没有任何问题。

奇怪的是,Alcor 读卡器只有在插入智能卡时才会被列出。如果我在设备管理器中查看它,它也不会显示在“智能卡读卡器”下,直到插入卡(除非我转到“查看”>“显示隐藏的设备”)。

有谁知道这是为什么,或者是否有办法确保它列在我的软件中?

谢谢你。

编码:

[DllImport("WINSCARD.DLL", EntryPoint = "SCardEstablishContext", CharSet = CharSet.Unicode, SetLastError = true)]
static internal extern uint EstablishContext(ScopeOption scope, IntPtr reserved1,
    IntPtr reserved2, ref SmartcardContextSafeHandle context);

[DllImport("WINSCARD.DLL", EntryPoint = "SCardListReaders", CharSet = CharSet.Unicode, SetLastError = true)]
static internal extern uint ListReaders(SmartcardContextSafeHandle context, string groups,
    string readers, ref int size);

private bool EstablishContext()
{
    if ((this.HasContext))
    {
        return true;
    }
    this._lastErrorCode =
        (SmartcardErrorCode)UnsafeNativeMethods.EstablishContext(ScopeOption.System,
        IntPtr.Zero, IntPtr.Zero, ref this._context);
    return (this._lastErrorCode == SmartcardErrorCode.None);
}

public ArrayList ListReaders()
{
    ArrayList result = new ArrayList();

    //Make sure a context has been established before
    //retrieving the list of smartcard readers.
    if (this.EstablishContext())
    {
        //Ask for the size of the buffer first.
        int size = this.GetReaderListBufferSize();
        //Allocate a string of the proper size in which
        //to store the list of smartcard readers.
        string readerList = new string('\0', size);
        //Retrieve the list of smartcard readers.
        this._lastErrorCode =
            (SmartcardErrorCode)UnsafeNativeMethods.ListReaders(this._context,
            null, readerList, ref size);

        if ((this._lastErrorCode == SmartcardErrorCode.None))
        {
            //Extract each reader from the returned list.
            //The readerList string will contain a multi-string of
            //the reader names, i.e. they are seperated by 0x00
            //characters.
            string readerName = string.Empty;
            for (int i = 0; i <= readerList.Length - 1; i++)
            {
                if ((readerList[i] == '\0'))
                {
                    if ((readerName.Length > 0))
                    {
                        //We have a smartcard reader's name.
                        result.Add(readerName);
                        readerName = string.Empty;
                    }
                }
                else
                {
                    //Append the found character.
                    readerName += new string(readerList[i], 1);
                }
            }
        }
    }
    return result;
}

顺便说一句,这段代码是由其他人编写的,我猜(由于评论过多)在网上的其他地方找到了它。我对它有些熟悉,但从未深入了解过。我已经尝试对其进行了一些调整,但根本无法将其列出该 Alcor 阅读器。

谢谢!

最佳答案

好吧,我觉得打开赏金后立即找到答案真的很愚蠢。我花了一段时间从软件的角度来看这个,然后放弃了一段时间 - 当我回来重新审视这个时,我认为它可能适合赏金。

我决定仔细看看我的 BIOS 选项,你猜怎么着?那里有一个选项,上面写着“打开智能卡读卡器的电源:a) 插入卡时,b) 始终”。我将其更改为“始终”并且它有效。阿格

它不会让我删除我的问题,因为它现在有赏金,但这基本上是我的答案。感谢您的评论/建议。

关于c# - 列出系统上的所有智能卡读卡器(Alcor Micro 读卡器问题),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15938725/

10-09 13:15