SOCKS5 stuff from the ISA 2004 SDK

I compiled the SOCKS5 stuff from the ISA 2004 SDK. I am running ISA
2004 Enterprise Edition.

I regsvr32 socksflt5.dll and looked in the Registry for the ProgID.
Then I made this vbscript:


    Set root = CreateObject("FPC.Root")

    Set containingServer = root.GetContainingServer
    Set fpcRefs = containingServer.InstalledApplicationFilters

    fpcRefs.Add "{188b8b05-9ee8-4ea5-86b0-acb68ba76a72}" , 0

But I get the error

inst.vbs(9, 5) (null): The Application Filter referenced by Server
testisa1 does not exist.

How to make good vbscript for this SOCKS 5 setup?


Thanks.

Hi,

In ISA Server 2004 Enterprise Edition, a script like the one you wrote can
be used to register a filter on an array member only after the filter has
been registered in the array and could be useful when the array has multiple
array members. In EE, there are two required processes for registering a
filter: 1) registering the filter in the array, 2) registering the filter on
each array member. These two processes can be combined for the first array
member, and only the second process must be performed for the other array
members in a multiple-server array. The process of registering a filter in
an array is the same as the complete process of registering a filter in
Standard Edition, where the array consists of a single ISA Server computer.
This is all described in detail in the SDK documentation (for application
filters, see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/isasdk/isa/registering_filters_in_enterprise_edition.asp?frame=true ,
and for Web filters, see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/isasdk/isa/registering_web_filters_in_enterprise_edition.asp?frame=true )
.

Pesach Shelnitz [MSFT]
--
This posting is provided "AS IS" with no warranties, and confers no rights.
OR if you wish to include a script sample in your post please add "Use of
included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm .
Please do not send e-mail directly to this alias. This alias is for
newsgroup purposes only.

<[email protected]> wrote in message
news:[email protected]...
>
> I compiled the SOCKS5 stuff from the ISA 2004 SDK. I am running ISA
> 2004 Enterprise Edition.
>
> I regsvr32 socksflt5.dll and looked in the Registry for the ProgID.
> Then I made this vbscript:
>
>
>     Set root = CreateObject("FPC.Root")
>
>     Set containingServer = root.GetContainingServer
>     Set fpcRefs = containingServer.InstalledApplicationFilters
>
>     fpcRefs.Add "{188b8b05-9ee8-4ea5-86b0-acb68ba76a72}" , 0
>
> But I get the error
>
> inst.vbs(9, 5) (null): The Application Filter referenced by Server
> testisa1 does not exist.
>
> How to make good vbscript for this SOCKS 5 setup?
>
>
> Thanks.
>

你可能感兴趣的:(server,filter,application,VBScript,documentation,include)