The ADSI GetInfo method re-initializes the object's properties by using values from the metabase. Because the object's properties are automatically initialized when the object is created, you need to use this method only if you want to refresh properties in the object with current values from the metabase.
object.GetInfo
<%
Dim IIsObj
Set IIsObj = GetObject("IIS://LocalHost/W3SVC/1/Root")
'Make some changes to properties.
' . . .
'Discard changes and refresh property values in the object.
IIsObj.GetInfo
%>
SetInfo, Get, Put, GetEx, PutEx