如何阻止用户打开 Internet Explorer 或 Firefox 等新进程?
我正在寻找一种方法来阻止用户打开新的 IE 或 Firefox 窗口。有没有办法使用 c# 来做到这一点。我正在查看系统诊断
I am looking for a way to block a user from opening new IE or firefox windows. Is there a way to do this using c#. I am looking at system.diagnostics
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Windows 服务,因为它在后台运行,并使用此代码终止进程(该代码终止检测到的正在运行的 Internet Explorer 进程)
You could use a windows service since it runs on background and use this code to terminate a process (the code terminates a detected running internet explorer process)
为“测试帐户”制定一个排除大部分开始菜单和桌面的组策略怎么样?让你的程序成为唯一可以运行的程序。
它不能保证不会启动另一个进程,但肯定会让它变得更加困难。
How about making a group policy for the "testing account" that excludes most of the start menu and the desktop. Make your program the only one that can run.
It won't guarantee that another process won't be started, but it will certainly make it more difficult.