|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (PowerBuilder) ScMinidriver - Change Smart Card PIN (or USB token PIN)See more ScMinidriver ExamplesDemonstrates how to change the PIN for a smart card or USB token.
 integer li_rc oleobject loo_Scmd string ls_ReaderName integer li_Success string ls_CurrentPin string ls_NewPin integer li_Retval // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Scmd = create oleobject // Use "Chilkat_9_5_0.ScMinidriver" for versions of Chilkat < 10.0.0 li_rc = loo_Scmd.ConnectToNewObject("Chilkat.ScMinidriver") if li_rc < 0 then destroy loo_Scmd MessageBox("Error","Connecting to COM object failed") return end if // Reader names (smart card readers or USB tokens) can be discovered // via List Readers or Find Smart Cards ls_ReaderName = "Alcor Micro USB Smart Card Reader 0" li_Success = loo_Scmd.AcquireContext(ls_ReaderName) if li_Success = 0 then Write-Debug loo_Scmd.LastErrorText destroy loo_Scmd return end if // If successful, the name of the currently inserted smart card is available: Write-Debug "Card name: " + loo_Scmd.CardName // Change the "user" PIN. (Typically, you'll always be using the "user" PIN.) ls_CurrentPin = "0000" ls_NewPin = "1234" li_Retval = loo_Scmd.PinChange("user",ls_CurrentPin,ls_NewPin) if li_Retval = -1 then Write-Debug "The PIN is already blocked." destroy loo_Scmd return end if if li_Retval = -2 then Write-Debug "The PinChange function failed for some unanticipated reason" Write-Debug loo_Scmd.LastErrorText destroy loo_Scmd return end if if li_Retval = 0 then Write-Debug "PIN successfully changed." else Write-Debug "Current PIN is incorrect." Write-Debug "Number of attempts remaining = " + string(li_Retval) end if loo_Scmd.DeleteContext() destroy loo_Scmd | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.