如何阻止用户打开 Internet Explorer 或 Firefox 等新进程?

发布于 2024-08-16 23:04:44 字数 69 浏览 4 评论 0原文

我正在寻找一种方法来阻止用户打开新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

勿忘初心 2024-08-23 23:04:44

您可以使用 Windows 服务,因为它在后台运行,并使用此代码终止进程(该代码终止检测到的正在运行的 Internet Explorer 进程)

while (true)
        {
            StartLoop:
            try
            {
                foreach (System.Diagnostics.Process process in System.Diagnostics.Process.GetProcesses())
                {
                    if (process.ProcessName.ToUpperInvariant().Equals("IEXPLORE"))
                        process.Kill();
                }
            }
            catch
            {
                goto StartLoop;
            }
        }

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)

while (true)
        {
            StartLoop:
            try
            {
                foreach (System.Diagnostics.Process process in System.Diagnostics.Process.GetProcesses())
                {
                    if (process.ProcessName.ToUpperInvariant().Equals("IEXPLORE"))
                        process.Kill();
                }
            }
            catch
            {
                goto StartLoop;
            }
        }
柠檬色的秋千 2024-08-23 23:04:44

为“测试帐户”制定一个排除大部分开始菜单和桌面的组策略怎么样?让你的程序成为唯一可以运行的程序。

它不能保证不会启动另一个进程,但肯定会让它变得更加困难。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文