Difference between revisions of "FAQ.Firewalls"

From Overbyte
Jump to navigation Jump to search
(Created page with ' Main page -> FAQ -> Firewalls == How do I add an rule to the firewall for my application == # Create a .net package (recommendation from…')
 
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
== How do I add an rule to the firewall for my application ==
 
== How do I add an rule to the firewall for my application ==
  
# Create a .net package (recommendation from dr Bob at http://www.drbob42.com/examines/examin55.htm)
+
=== Using netsh ===
# Add the units in the DotNet-folder of ICS e g Overbyte.Ics.Component.pas et c.
 
# Add the Borland VCL (the units implicity uses them so they are needed as a reference)
 
# Compile and the finished DLL-can be used by .Net environments like Visual Studio 2005.
 
 
 
 
 
== Deployment ==
 
 
 
The following files are needed when deploying your application
 
 
 
* ICS.dll (the file that you have created yourself as per description above)
 
* Borland.Delphi.dll
 
* Borland.Vcl.dll
 
* Borland.VclRtl.dll.
 
  
== Examples ==
+
See [http://technet.microsoft.com/en-us/library/bb490617.aspx Microsoft reference]
  
=== Using netsh ===
+
Example:
  
 
   netsh firewall add allowedprogram C:\MyApp\MyApp.exe MyApp ENABLE
 
   netsh firewall add allowedprogram C:\MyApp\MyApp.exe MyApp ENABLE
 
==== See also ====
 
 
[http://technet.microsoft.com/en-us/library/bb490617.aspx]
 

Latest revision as of 10:02, 5 October 2010

Main page -> FAQ -> Firewalls

How do I add an rule to the firewall for my application

Using netsh

See Microsoft reference

Example:

 netsh firewall add allowedprogram C:\MyApp\MyApp.exe MyApp ENABLE