我有一个
Windows Forms应用程序在用户的桌面上本地运行.访问互联网的唯一方法是通过执行System.Diagnostics.Process.Start(url)来启动用户的默认浏览器并将其指向各种URL(以检查更新,与我们联系等).如果没有用户通过单击菜单项或按钮来明确地请求它,就不会发生这种情况.
在我的机器上,我偶尔会在启动程序时收到一个Windows防火墙警告消息,称Windows防火墙已经“阻止某些功能”的程序来保护机器.在Visual Studio中运行我的程序时,我也偶尔会收到此警告(并且警告对话框表示vshost已被网络阻止).它不会一直发生.
我没有听说过我的客户在电脑上发生这种情况,但这并不意味着没有.对于技术较少的用户来说,这是一个有点吓人的警告,所以我想知道如何尽可能地消除它.
我的程序可能会做什么来触发这个警告?
编辑:我的程序在启动时唯一有些不寻常的事情是使用Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase类来强制执行单个实例应用程序.我知道这在幕后有一些线程魔法来检测新的实例并重定向它们.有可能是由于某些原因在网络上收听吗?
Windows防火墙只会在您的程序正在侦听端口(有效充当服务器)时触发. System.Diagnostics.Process.Start不会触发Windows防火墙.
原文链接:https://www.f2er.com/windows/370198.html相反,WindowsFormsApplicationBase可能导致防火墙警告,因为WindowsFormsApplicationBase使用远程处理来感测其自身的其他实例.使用反射器,我发现这个代码在WindowsFormsApplicationBase.Run()中:
TcpChannel channel = this.RegisterChannel(secureChannel); RemoteCommunicator communicator = new RemoteCommunicator(this,this.m_MessageRecievedSemaphore); string uRI = applicationInstanceID + ".rem"; new SecurityPermission(SecurityPermissionFlag.RemotingConfiguration).Assert(); RemotingServices.Marshal(communicator,uRI); CodeAccessPermission.RevertAssert(); string uRL = channel.GetUrlsForUri(uRI)[0]; this.WriteUrlToMemoryMappedFile(uRL); this.m_FirstInstanceSemaphore.Set(); this.DoApplicationModel();
只要您使用WindowsFormsApplicationBase作为其SingleInstance功能,我就不知道这一点.