Share via


IIsWebServer.Continue (ADSI)

The Continue method of the IIsWebServer (ADSI) object continues the server operation after it has been paused.

Syntax

IIsWebServer.Continue

Code Example
  <% 
  Dim ServerObj 
  'Continue the second Web server. 
  Set ServerObj = GetObject("IIS://LocalHost/W3SVC/2") 
  ServerObj.Continue 
%>