Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
518 views

Disable the programs ability to add exceptions to windows firewall via the API

This is a problem with Windows Firewall that is very annoying from its introduction. And persist trough several versions of windows. I have two questions: Is it possible to be disabled or at least ...
2
votes
1answer
636 views

CommandLine IP block / unblock in Windows Firewall with Advanced Security

I'd like to programmatically be able to block outgoing packets to some IPs. Nevermind the application, I would like to be able to do it. I have Windows 7 x64 Professional so it comes with ...
2
votes
2answers
730 views

Programmatically modify Firewall rules in Windows Server 2008 R2

I want be able to programmatically enable, disable, create firewall rules in Windows Server 2008 R2. What is the object model to modify the firewall rules from .Net/PowerShell?
1
vote
2answers
68 views

Add Blocked IPs using .NET Framework

We have a lot of machines, and it can be a pretty big pain in the ass when a customer on one of them requests that we block some IPs. We run Game Servers, so generally IPs that need to be blocked can ...
1
vote
1answer
595 views

Adding firewall exceptions for other firewall products than Windows Firewall - such as Norman, Norton etc

I have a WiX installer project where I have added two firewall exceptions as part of the installer by using the WiX FirewallException. This works great when the client machine is using Windows ...
0
votes
0answers
52 views

NETCONLib's EnumEveryConnection property doesn't return all network connections

I'm trying to use VirtualRouter to connect my Android phone to PC. But VirtualRouter doesn't show some of my connections in the available/shareable network connections. So, I looked into its code. ...
0
votes
0answers
33 views

Windows Form App crashes in Server 2008 obtaining Firewall Manager

I wrote a small C# application to do firewall tasks like block IPs, enable/disable the firewall, etc. It works perfectly on Windows 7 x64 but as soon as I try it on Windows Server 2008 x64 it crashes. ...
0
votes
1answer
205 views

Windows XP firewall blocks open connection made using C# socket

I make a client-server connection using C# sockets and while the connection is established in the client side I activate the firewall using the firewall api, after that, for some reason the client ...
0
votes
0answers
337 views

How does one add services to the Windows Firewall trust list, or prompt the user to do the same?

I integrated a small http server in my software distribution, intended to allow access to my installed application from the customer's LAN. Right now, the customer has to manually update the ...
0
votes
2answers
441 views

hnetcfg.dll throws BadImageFormatException

Executing code that references c:\windows\system32\hnetcfg.dll to manage the Windows Firewall from this question, causes a BadImageFormatException as soon as the DLL is loaded. Opening the 414KB DLL ...
0
votes
1answer
381 views

Using FirewallException api in Wix to apply setting to all network profiles in Win7

An installer with wix I've made uses the FirewallException api to register some components of the package with the Windows firewall, in order to try and prevent firewall popups. It seems that in ...
0
votes
2answers
186 views

Restricting tcp communication to specific ip's using C#

I want to make a simple program that can restrict any communication over the internet except for some specific ip's. So that the user can eliminate any unwanted traffic. It has to be simple and the ...
0
votes
1answer
8k views

Active FTP client blocked by Windows Firewall on Windows 7

I have an application that runs as a service and contains an FTP client. It needs to connect to an FTP server that only supports Active FTP. When I attempt to get a list of files or download a file, ...