Windows login using C#

823 views Asked by At

I have a C# application which reads my NFC tag and gets the ID of it.

Using NFC proximity API's, I was able to read a NFC tag.

When subscribed to NFC Tag arrival,

proximityDevice.DeviceArrived += (device) => {Print(device.DeviceId);};

corresponding Device-ID

\\?\aci#nxp54442#2&daba3ff&2#(fb3842cd-blah blah blah)

How to make this application run at windows login so that when I tap my NFC tag, the application reads the tag and auto-logins the user ?

1

There are 1 answers

2
Nil23 On

There are two option, I know what kind of this application is exactly. But if you want to run the application at windows start up you can either look option for Windows Service or keep the application at start up location if it is simple EXE. This will run when windows will start up. In case of Windows server you have to make start up type 'Automatic'