Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros SIM - getting password from magnetic card

Status
Not open for further replies.

jd11111

Programmer
Apr 29, 2010
160
US
I'm trying to figure out how to get the password from a standard magnetic card swipe.

withe the following script I get nothing on the infomessage after swiping a micros card.

var empPW : n15

input empPW, "Please sign in"
infomessage empPW
 
Swiping the card with notepad or wordpad open will give you the number associated with that card. Is that what you mean? Otherwise I imagine you would have to search through individual employees in poscfg.
 
no...I'm talking about sim programming, not just getting the password once.

thanks.
 
figured it out...

input empPW{M2,1,4,15}, "Please Enter ID"


but will this work for all micros security magnetic cards?
 
input empPW {m2,1,1,*}, "Please sign in"
infomessage empPW


Add the section in parentheses to tell the SIM to look to the magreader for the input.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top