Share via


IIsWebServer.Pause (ADSI)

The Pause method of the IIsWebServer (ADSI) object pauses the server operation.

Syntax

IIsWebServer.Pause

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