Hotfix information
A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem.
If the hotfix is available for download, there is a "Hotfix download available" section at the top of this Knowledge Base article. If this section does not appear, submit a request to Microsoft Customer Service and Support to obtain the hotfix.
Note If additional issues occur or if any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. For a complete list of Microsoft Customer Service and Support telephone numbers or to create a separate service request, visit the following Microsoft Web site:
Note The "Hotfix download available" form displays the languages for which the hotfix is available. If you do not see your language, it is because a hotfix is not available for that language.
Prerequisites
You must have ISA Server 2004 Service Pack 3 (SP3) installed to apply this hotfix.
Restart requirement
You must restart the computer after you apply this hotfix.
Hotfix replacement information
This hotfix does not replace any other hotfixes.
File information
The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the
Time Zone tab in the
Date and Time item in Control Panel.
File name | File version | File size | Date | Time | Platform |
---|
Compadmin.dll | 4.0.2167.911 | 164,768 | 18-Oct-2009 | 07:00 | x86 |
Comphp.dll | 4.0.2167.911 | 193,952 | 18-Oct-2009 | 07:00 | x86 |
Fweng.sys | 4.0.2167.911 | 385,568 | 18-Oct-2009 | 07:00 | Not Applicable |
Httpfilter.dll | 4.0.2167.911 | 144,288 | 18-Oct-2009 | 07:00 | x86 |
Msfpc.dll | 4.0.2167.911 | 377,248 | 18-Oct-2009 | 07:00 | x86 |
Msfpcsnp.dll | 4.0.2167.911 | 3,805,600 | 18-Oct-2009 | 07:00 | x86 |
Mspadmin.exe | 4.0.2167.911 | 270,240 | 18-Oct-2009 | 07:00 | x86 |
Msphlpr.dll | 4.0.2167.911 | 431,008 | 18-Oct-2009 | 07:00 | x86 |
Radiusauth.dll | 4.0.2167.911 | 71,072 | 18-Oct-2009 | 07:00 | x86 |
Ratlib.dll | 4.0.2167.911 | 38,304 | 18-Oct-2009 | 07:00 | x86 |
Rpcfltr.dll | 4.0.2167.911 | 150,432 | 18-Oct-2009 | 07:00 | x86 |
Sumgen.dll | 4.0.2167.911 | 524,704 | 18-Oct-2009 | 07:00 | x86 |
W3filter.dll | 4.0.2167.911 | 825,760 | 18-Oct-2009 | 07:00 | x86 |
Wspsrv.exe | 4.0.2167.911 | 1,056,160 | 18-Oct-2009 | 07:00 | x86 |
After you install this hotfix, you have to follow these steps to enable it:
- Start Notepad.
- Paste the following script into the Notepad file.
Note The value that is specified by this script sets a delay (in milliseconds) between closing a connection and reestablishing it from the same port. You may have to adjust the values that are based on your environment. By default, there is no delay before you run the script.
Const SE_VPS_GUID = "{143F5698-103B-12D4-FF34-1F34767DEabc}"
Const SE_VPS_NAME = "SleepBetweenSessionsWithClientIPinMilliseconds"
Const SE_VPS_VALUE = 50
Sub SetValue()
' Create the root object.
Dim root ' The FPCLib.FPC root object
Set root = CreateObject("FPC.Root")
'Declare the other objects needed.
Dim oArray ' An FPCArray object
Dim VendorSets ' An FPCVendorParametersSets collection
Dim VendorSet ' An FPCVendorParametersSet object
' Get references to the array object
' and the network rules collection.
Set oArray = root.GetContainingArray
Set VendorSets = oArray.VendorParametersSets
On Error Resume Next
Set VendorSet = VendorSets.Item( SE_VPS_GUID )
If Err.Number <> 0 Then
Err.Clear
' Add the item
Set VendorSet = VendorSets.Add( SE_VPS_GUID )
CheckError
WScript.Echo "New VendorSet added... " & VendorSet.Name
Else
WScript.Echo "Existing VendorSet found... value- " & VendorSet.Value(SE_VPS_NAME)
End If
if VendorSet.Value(SE_VPS_NAME) <> SE_VPS_VALUE Then
Err.Clear
VendorSet.Value(SE_VPS_NAME) = SE_VPS_VALUE
If Err.Number <> 0 Then
CheckError
Else
VendorSets.Save false, true
CheckError
If Err.Number = 0 Then
WScript.Echo "Done with " & SE_VPS_NAME & ", saved!"
End If
End If
Else
WScript.Echo "Done with " & SE_VPS_NAME & ", no change!"
End If
End Sub
Sub CheckError()
If Err.Number <> 0 Then
WScript.Echo "An error occurred: 0x" & Hex(Err.Number) & " " & Err.Description
Err.Clear
End If
End Sub
SetValue
- Save this Notepad file by using the .vbs file name extension. For example, use the following name to save this file:
SleepBetweenSessionsWithClientIPinMilliseconds.vbs
- Click Start, click Run, type cmd, and then click OK.
- At the command prompt, run the following command:
cscript SleepBetweenSessionsWithClientIPinMilliseconds.vbs