如果应用程序尝试连接到互联网,我是否需要处理 UAC?
我想如果我写入文档以外的目录、更改注册表或者禁用系统设备、处理防火墙等,则需要 uac。但是,如果应用程序尝试连接到互联网 - 80,443 端口怎么办? uac有哪些限制? 10 倍!
I guess uac is needed if I write to directories others than Documents, if I change the registry or if I disable system devices, handle firewall, things like that. But what if the app tries to connect to internet - 80,443 port? what are the limitations uac places?
10x!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设端口未被防火墙阻止,UAC 通常不会影响 Internet 连接。防火墙更改可能需要 UAC 提升,但在端口上打开连接的实际操作则不需要。假设没有其他东西占用这些端口,程序应该能够毫无问题地打开连接并侦听端口 80 或 443。
UAC normally does not affect making internet connections, assuming the port is not blocked by Firewall. A firewall change may require UAC elevation, but the actual act of opening a connection on a port does not. A program should be able to open connection and listen on port 80 or 443 without issue, assuming nothing else is occupying those ports.