Share via


IIsWebDirectory.AppUnload (ADSI)

You can use the AppUnload method of the IIsWebDirectory (ADSI) or IIsWebVirtualDir (ADSI) object to unload a Web application that is running out-of-process. All of the application's resources are released and the application's process is terminated. If the application is running in-process, the application is released, if it is not being referenced by any other applications.

note Note Server component DLLs are not released from in-process applications, even if they aren't currently referenced by other applications.

Syntax

DirObj.AppUnload

Parameters
  • DirObj
    An IIS ADSI object of type IIsWebDirectory or IIsWebVirtualDir.
Code Example
  <% 
  Dim DirObj 
  Set DirObj = GetObject("IIS://LocalHost/W3SVC/1/ROOT/MyAppDir") 
  'Unload the application at this directory. 
  DirObj.AppUnload 
%>