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
16 lines
443 B
@echo off
|
|
echo.
|
|
echo.------------------------------------------------------------
|
|
echo.Smart Card Logon BVT
|
|
echo.------------------------------------------------------------
|
|
call sclogon /pin 00000000
|
|
echo.------------------------------------------------------------
|
|
if errorlevel 0 goto success
|
|
goto failure
|
|
:success
|
|
echo.PASS
|
|
goto end
|
|
:failure
|
|
echo.FAIL
|
|
:end
|
|
echo.------------------------------------------------------------
|