C# .NET 记录给定用户在服务器上的屏幕活动
我正在考虑编写一个可以在最好隐藏的 Windows 服务器(2008)上运行的 Windows 服务(.NET),我基本上希望它执行以下操作:
- 登录时检查当前用户
- 如果用户是“SpecificUsername”启动记录屏幕活动(可以是每秒左右的屏幕截图或视频)
- 如果在一段时间内没有检测到键盘按下/鼠标单击,则暂停记录
- 在用户注销时停止捕获
我的问题是:
我可以使用.NET本机捕获屏幕吗或者有推荐的第三方吗我可以用这个dll吗?
I'm looking into writing a windows service (.NET) that can run on a windows server (2008) preferably hidden, and I basically want it to do the following:
- Check upon logon the current user
- If the user is "SpecificUsername" start logging screen activity (can be screen shots every second or so or video)
- If no keyboard presses / mouse click are detected within a time period pause recording
- Upon the user logging off stop capture
My question is:
Can I capture the screen using .NET natively or is there a recommended third party dll I could use for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此链接可带您找到一些用于屏幕捕获的优秀代码c#.我正在考虑使用它,但还没有找到使用它的应用程序。
检查当前用户可以在应用程序中最简单地完成,具体取决于您保存登录信息的位置,即:会话、Windows 身份验证、cookie 或数据库等。
This link takes you to some good code for screen capture in c#. I was thinking of using this but haven't got around to the app that uses it.
Checking the current user can be done within the application most easy depending on where you save the logon information ie: session, windows auth, cookies or database etc.