Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to create a detailed firewall policy report for any firewall policy in Internet Security and Acceleration Server 2004


View products that this article applies to.

Introduction

This article describes how to use a Microsoft Visual Basic script to create a detailed firewall policy report for Microsoft Internet Security and Acceleration Server (ISA) 2004.

↑ Back to the top


More information

You can use the Visual Basic script that is described in this section as a template to generate a detailed firewall policy report. You can modify this script to display any combination of details about some or all of the firewall policy rules that are contained in ISA Server 2004. Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. This article assumes that you are familiar with the following topics:
  • Visual Basic
  • Internet Security and Acceleration Server 2004
To run the Visual Basic script:
  1. Copy the following Visual Basic script to a text editor (such as Notepad), and then save the file by using a .vbs file name extension to your local ISA Server computer:
    Sub IteratePolicyRules()
    
    
    
    ' Create the root obect.
    
    Set root = CreateObject("FPC.Root")
    
    
    
    ' Declare the other objects that you want.
    
    Dim array ' An FPCArray object
    
    Dim spRules ' An FPCSystemPolicyRules collection
    
    Dim rules ' An FPCPolicyRules collection
    
    Dim rule ' An FPCPolicyRule object
    
    Dim isEnabled ' A string
    
    
    
    ' Get references to the array object, the system
    
    ' policy rules collection, and the policy rules collection.
    
    Set array = root.GetContainingArray()
    
    Set spRules = array.SystemPolicy.PolicyRules
    
    Set rules = array.ArrayPolicy.PolicyRules
    
    
    
    ' List the system policy rules and indicate whether each
    
    ' rule is enabled.
    
    WScript.Echo "***System Policy Rules***"
    
    For Each rule In spRules
    
    If rule.Enabled = True Then
    
    isEnabled = "Enabled"
    
    Else
    
    isEnabled = "Disabled"
    
    End If
    
    WScript.Echo rule.Name & ": " & isEnabled
    
    Next
    
    
    
    ' List the policy rules and indicate whether each
    
    ' rule is enabled.
    
    WScript.Echo vbCrLf & "***Policy Rules***"
    
    For Each rule In rules
    
    If rule.Enabled = True Then
    
    isEnabled = "Enabled"
    
    Else
    
    isEnabled = "Disabled"
    
    End If
    
    WScript.Echo rule.Name & ": " & isEnabled
    
    Next
    
    End Sub
    
    
    
    IteratePolicyRules
    
  2. In your text editor, view the script that you made in step 1.
  3. Use the commented sections of the code as a guide to modify the code to include the report information that you want, and then save your changes.
  4. Click Start, click Run, type cmd, and then click OK.
  5. At the command prompt, change to the folder that contains the .vbs file that you saved in step 3.
  6. At the command prompt, type cscript YourISAReport.vbs, and then press ENTER. In this command, YourISAReport is the name of the file that you chose in step 1.
For more information about Internet Security and Acceleration Server 2004, visit the following Microsoft Web site.For more information about Microsoft Visual Studio .NET, visit the following Microsoft Web site.

↑ Back to the top


Keywords: KB841663, kbhowto, kbinfo

↑ Back to the top

Article Info
Article ID : 841663
Revision : 5
Created on : 7/5/2005
Published on : 7/5/2005
Exists online : False
Views : 356