I'm trying to realize a simple C# application that allows user to scan documents from an auto-feeder scanner connected to a dedicated networked computer (Windows 2008 Server R1).
The procedure must be as simple as: Press a button > Scanner starts > Documents are saved in a shared folder.
This sound pretty simple but the constructor's (HP) software fails to do that when no interactive session is opened. After loosing too much time trying to figure out how to get it working (using autologin and other stuffs), I decided to code my own.
So here is the thing
As nobody use this computer I decided to connect a simple USB numpad with a global keyboard hook on the '0' key that triggers scanning using the WIA automation layer.
This work fine when launching the exe manually but the hook is never triggered when launched from Windows' Task Scheduler (even if the user is logged-in). I guess global hooks are not that global...
1/ Is it possible to get global hooks working that way? (basically when nobody is logged-in)
2/ Have you some other thoughts on how to trigger the scanning procedure using a button? (maybe another HID device that I can write a small 'driver' for)
Thanks a lot!