Site.Start Method1

启动现有网站。

语法

oSite.Start  
oSite.Start();  

参数

此方法不采用参数。

返回值

此方法不返回值。

注解

此方法对于 IIS 7 WMI 提供程序来说是新方法,在 IIS 6.0 中没有对应的方法。

示例

以下示例启动名为 IISWebSite 的网站。

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin= GetObject("winmgmts:root\WebAdministration")  
  
' Specify the Web site name.  
Set oSite= oWebAdmin.Get("Site.Name='IISWebSite'")  
  
' Start the Web site.  
oSite.Start  

若要在调用 Start 方法后检查网站的状态,请使用 GetState 方法。

要求

类型 描述
客户端 - IIS 7.0(在 Windows Vista 上)
- IIS 7.5(在 Windows 7 上)
- IIS 8.0(在 Windows 8 上)
- IIS 10.0(在 Windows 10 上)
服务器 - IIS 7.0(在 Windows Server 2008 上)
- IIS 7.5(在 Windows Server 2008 R2 上)
- IIS 8.0(在 Windows Server 2012 上)
- IIS 8.5(在 Windows Server 2012 R2 上)
- IIS 10.0(在 Windows Server 2016 上)
产品 - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0
MOF 文件 WebAdministration.mof

另请参阅

Site 类