Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To create a AirID device driver log-file please follow these steps depending on version installed on your system:

Panel
borderStyledashed
titleInstaller version 1.0.24.6 (191122) and later

Using a batch file

Loggin has to be enabled first. For that purpose there are three batch files shipped with the installer located at "C:\Program Files\certgate GmbH\AirIdSmartCardReader\util":

  • start-logging.bat will enabled logging after a system reboot
  • stop-logging.bat will disable logging after a system reboot
  • clear-logging.bar will delete all privious created logfiles

Once enabled, logfiles are written to "C:\ProgramData\certgate". Each log is named by date and time of creation for easy identification.

Please attach the .log file(s) to your support request and also state the time at which the recorded issue occured.


Panel
borderStyledashed
titleInstaller before version 1.0.24.6 (191122)Step-by-Step

Using a batch file

To create a log this .bat file can be used: Trace.bat

  1. Right click the batch file and choose "run as administrator"
  2. Execute the steps to reproduce the problem.
  3. Press any key to stop logging.

The log will be created as an .etl file that will be written to "c:\traceFile.etl"


Using cmd.exe

Alternatively cmd.exe can be used to create a log file:

  1. Open the command line interface as admin (cmd.exe)
  2. Enter the following commands:
logman create trace "driver_session" -p {05C64576-BE0E-49BF-A5D4-A17395EED556} 0xffffffff 0xff -o c:\traceFile.etl

Creates a trace session named "driver_session" that will be written to to file "c:\traceFile.etl"

logman start "driver_session"

Start recording a given session. Entries will be written to the file provided during session creation.

logman stop "driver_session"

Stops the recording a given session.


Please attach the .etl log file to your support request and also state the time at which the recorded issue occured.

...