Click here to Skip to main content
15,915,164 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How windows 10 OS implements Last activities of users ? what they viewed and their activity ?

There are tools to view them?

What are the API to build then using C++ programming language ?

Thanks

What I have tried:

Nothing. Googled but only app.
Posted
Updated 18-Jun-16 23:03pm

1 solution

Typical activities are keyboard and mouse events. These can be detected for single applications by implementing handlers for common messages. See Keyboard Input (Windows)[^], Mouse Input (Windows)[^], and Raw Input (Windows)[^].

For system wide monitoring you need to install hooks. See Using Hooks (Windows)[^].

What a user has viewed can't be really detected. But you can monitor events like opening files. An example can be found at Windows File Monitoring System Using Windows API Hooking[^].

Because your question is rather vague you should now have some keywords for further online research ("windows c++ hook" together with the kind of activity to be monitored).

An existing tool that may cover some of your requirements is the Process Monitor[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900