SetInfo

The ADSI SetInfo method saves changed property values from the object into the metabase. After you have changed some or all of the values in the object properties, you must use the SetInfo method to save the new values back into the metabase. Only the values you changed will be saved back into the metabase; unchanged values will not be written.

Syntax

object.SetInfo 
 

Parts

object
Contains an IIS Admin Object, usually as a result of a previous GetObject operation.

Code Example

<% 
Dim IIsObj 
Set IIsObj = GetObject("IIS://LocalHost/W3SVC/1/Root") 
' Make some changes to properties 
' . . . 
' Save the changes back to the metabase 
IIsObj.SetInfo 
%> 
 

See Also

GetInfo, Get, Put, GetEx, PutEx, GetInfoEx