Windows error 0x8010002E, -2146435026

Detailed Error Information

SCARD_E_NO_READERS_AVAILABLE[1]

MessageCannot find a smart card reader.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode16 (0x010)
NameFACILITY_SCARD[2][1]
DescriptionThe source of the error code is the Smart-card subsystem.[2][1]
Error Code46 (0x002e)

Questions

1vote
1answer

Yubikey not detected by gpg-agent and pcsc_scan on LMDE

I have an issue regarding the GPG agent that prevents me from using several commands and particularly the one that enforces the user to touch the key before signing. I am on Debian 8.9 / Linux Mint Debian Edition. I have struggled to make pgp2 --edit-card work, but discovered that [...] read more
gnupg
smartcard
gpg-agent
1vote
1answer

Trouble Converting Smart Card Program to UWP

I'm working on converting what was originally a web forms .NET application to UWP. The application is for using company-issued badges to record meeting attendance instead of our current paper sign in sheets. The original program uses an Omnikey 5427 CK in keyboard wedge mode and has no problems. For [...] read more
uwp
raspberry-pi
smartcard
windows-10-iot-core
smartcard-reader
1vote
0answers

Smart Card APIs throw First Chance exceptions but program runs fine

INTRODUCTION I am learning how to use Smart Card API in order to obtain card number once it gets inserted into reader. So far I have managed to create a working application that runs (as far as I can see) without errors. PROBLEM During debugging I see various First chance [...] read more
c++
winapi
winscard
1vote
1answer

applet with SunMSCapi not working in linux

We have created a new site for our web where we let the users to sign a pdf document using an applet we have designed. The issue is that this applet works fine only in Windows OS and we would like to extend it to linux OS. When we run [...] read more
java
certificate
keystore
pkcs#11
0votes
0answers

I get an error running the base C++ code for MongoDB with WIndows 10, Visual Studio 2019

I have a problem with running the basic C++ code for MongoDB. Works on Windows 10 with Visual Studio 2019. I was able to add libraries for mongocxx etc thanks to vcpkg. #include <iostream> #include <bsoncxx/builder/stream/document.hpp> #include <bsoncxx/json.hpp> #include <mongocxx/client.hpp> #include <mongocxx/instance.hpp> int main(int, char**) { mongocxx::instance instance{}; // This [...] read more
c++
windows
mongodb
visual-studio
compiler-errors
0votes
1answer

Smart card reader not dedected - PCSC Error - 0x8010002e

My system was working fine but now my any application is not detecting the smart card reader ( SCM Microsystem) attached in the system while it is displaying in device manager. Here I tried to get the exact error with trying C++ code (winscard.h) to connect the reader, reader_status = [...] read more
pcsc
winscard
0votes
0answers

Unresolved External Symbol SCardEstablishContext

I tried to write a console application to read smart card in C , #include <stdio.h> #include <winscard.h> #include <SCardErr.h> #ifndef SCARD_E_NO_READERS_AVAILABLE #define SCARD_E_NO_READERS_AVAILABLE ((DWORD)0x8010002E) #endif SCARD_IO_REQUEST pciT0 = {1, 8}; int main(void) { SCARDCONTEXT hSC; SCARDHANDLE hCard; char RxBuffer[256]; char TxBuffer[64]; char ReaderName[64]; int retval, dCount, i, dProtocol, dLength, [...] read more
c++
c
visual-studio-2012
smartcard
smartcard-reader
0votes
1answer

Event notification for ::SCardListReaders()

In the PC/SC (Personal Computer Smart Card) Appln, I have (MSCAPI USB CCID based) 1) Calling ::SCardListReaders() returns SCARD_E_NO_READERS_AVAILABLE (0x8010002E). This call is made after OS starts fresh after reboot, from a thread which is part of my custom windows service. 2) Adding delay before ::SCardListReaders() call solves the problem. [...] read more
visual-c++
windows-7
com
smartcard
hardware-interface

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0