The ADSI GetInfoEx method reinitializes the object's properties from the metabase. As implemented by IIS, this method performs the same function as the GetInfo method.
object.GetInfoEx
<%
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.GetInfoEx
%>
GetInfo, SetInfo, Get, Put, GetEx, PutEx