gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 18:10:00 24 4
gpt4 key购买 nike

我正在寻找一种方法来阻止用户打开新的 IE 或 firefox 窗口。有没有办法使用 c# 来做到这一点。我正在查看 system.diagnostics

最佳答案

您可以使用 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;
}
}

关于c# - 如何阻止用户打开 Internet Explorer 或 Firefox 等新进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2031397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com