Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
443 B

  1. @echo off
  2. echo.
  3. echo.------------------------------------------------------------
  4. echo.Smart Card Logon BVT
  5. echo.------------------------------------------------------------
  6. call sclogon /pin 00000000
  7. echo.------------------------------------------------------------
  8. if errorlevel 0 goto success
  9. goto failure
  10. :success
  11. echo.PASS
  12. goto end
  13. :failure
  14. echo.FAIL
  15. :end
  16. echo.------------------------------------------------------------