The Remove method removes the specified FPCWebFilter object from the collection.
HRESULT Remove( [in] VARIANT Index );
Required. String-formatted globally unique identifier (GUID) of the Web filter represented by the FPCWebFilter object to remove, or one-based index of the object to remove.
Sub Remove( _ ByVal Index As Variant _ )
Required. String-formatted globally unique identifier (GUID) of the Web filter represented by the FPCWebFilter object to remove, or one-based index of the object to remove.
This method has no return values. If the call is unsuccessful, an error is raised that can be intercepted by using an error handler.
Sub DeleteWebFilter(filterGuid) ' Declare the other objects needed. Dim root ' The FPCLib.FPC root object Dim tmgArray ' An FPCArray object Dim filters ' An FPCWebFilter collection ' Create the root object. Set root = CreateObject("FPC.Root") ' Get references to the array object ' and the Web filter object. Set tmgArray = root.GetContainingArray() Set filters = tmgArray.Extensions.WebFilters ' Delete the specified filter. WScript.Echo "Deleting the " & filters(filterGuid).Name & " Web filter..." filters.Remove(filterGuid) filters.Save WScript.Echo "Done!" End Sub
When the Remove method is called to unregister a Web filter in an array, the reference to the FPCWebFilter object representing the Web filter is automatically removed from the FPCRefs collection stored in the InstalledWebFilters property of the local Forefront TMG computer.
Client | Requires Windows Vista or Windows XP. |
---|---|
Server | Requires Windows Server 2008. |
Version | Requires Forefront Threat Management Gateway (TMG). |
IDL |
Declared in Msfpccom.idl. |
DLL |
Requires Msfpccom.dll. |
Send comments about this topic to Microsoft
Build date: 11/30/2009
© 2008 Microsoft Corporation. All rights reserved.