I need to write a program to show a password window when user tries to access a file or folder in c++ for win XP & win 7 (for both 32bit and 64bit). But the difficult part is that I cannot use IAT \ EAT or inline hooking for this task as it is required to use a bit Microsoft supported method for this project.
While googling for this, it was also mentioned in many forums that this can be accomplished using a file system filter driver but I am wondering how I show a password dialog from a mini driver.
I think a shell extension could do this job, but msdn documentations shows that shell extension cannot be used to intercept I/O call.
Please advice, thanks in advance.