New-SPWebApplicationExtension
适用于: SharePoint Foundation 2010, SharePoint Server 2010
上一次修改主题: 2015-03-09
为 Web 应用程序创建新区域实例。
Syntax
New-SPWebApplicationExtension [-Identity] <SPWebApplicationPipeBind> -Name <String> -Zone <Default | Intranet | Internet | Custom | Extranet> [-AdditionalClaimProvider <SPClaimProviderPipeBind[]>] [-AllowAnonymousAccess <SwitchParameter>] [-AssignmentCollection <SPAssignmentCollection>] [-AuthenticationMethod <String>] [-AuthenticationProvider <SPAuthenticationProviderPipeBind[]>] [-Confirm [<SwitchParameter>]] [-HostHeader <String>] [-Path <String>] [-Port <UInt32>] [-SecureSocketsLayer <SwitchParameter>] [-SignInRedirectProvider <SPTrustedIdentityTokenIssuerPipeBind>] [-SignInRedirectURL <String>] [-Url <String>] [-WhatIf [<SwitchParameter>]]
详细说明
New-SPWebApplicationExtension cmdlet 可为 Web 应用程序创建新的区域实例。它也称为扩展 Web 应用程序,并允许为现有 Web 应用程序中可用的相同内容配置备用权限。
有关 Windows PowerShell for SharePoint 产品的权限和最新信息,请参阅联机文档 (https://go.microsoft.com/fwlink/?LinkId=163185)。
Parameters
参数 | 必需 | 类型 | 说明 |
---|---|---|---|
Identity |
必需 |
Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind |
指定要扩展的 Web 应用程序。 |
Name |
必需 |
System.String |
指定 Web 应用程序中新 IIS 网站的名称。 |
Zone |
必需 |
System.String |
指定五个区域中将与此新扩展的内部 URL 关联的区域。此区域不能已被占用。 该类型必须是下列值中的任何一个:Default、Intranet、Internet、Extranet 或 Custom |
AdditionalClaimProvider |
可选 |
Microsoft.SharePoint.PowerShell.SPClaimProviderPipeBind[] |
向定义的 Web 应用程序添加特定声明提供程序。 |
AllowAnonymousAccess |
可选 |
System.Management.Automation.SwitchParameter |
允许对 Web 应用程序区域进行匿名访问。 |
AssignmentCollection |
可选 |
Microsoft.SharePoint.PowerShell.SPAssignmentCollection |
管理对象以便正确进行处理。使用 SPWeb 或 SPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。在使用 SPWeb、SPSite 或 SPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。
Note
在使用 Global 参数时,所有对象均包含在全局存储中。如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。
|
AuthenticationMethod |
可选 |
字符串 |
使用 Kerberos 或 NTLM 可指定验证方法。 |
AuthenticationProvider |
可选 |
Microsoft.SharePoint.PowerShell.SPAuthenticationProviderPipeBind[] |
指定适用于 Web 应用程序的验证提供程序。 |
Confirm |
可选 |
System.Management.Automation.SwitchParameter |
在执行命令之前提示您确认。有关详细信息,请键入以下命令:get-help about_commonparameters |
HostHeader |
可选 |
System.String |
指定分配给必须与备用访问映射配置关联的 Web 应用程序的有效 URL,格式为 http://server_name。 如果存在 HostHeader 参数,则此字段的值为 Web 应用程序的内部 URL。Url 参数用于指定公共 URL。 |
Path |
可选 |
System.String |
指定新网站的物理目录(在虚拟目录文件夹中)。键入的值为 C:\Inetpub\wwwroot\MyWebApplication 形式的有效路径。 |
Port |
可选 |
System.UInt32 |
指定应用程序端口。可以是任意有效端口号。 如果未指定端口,则自动生成一个非冲突的端口号。
Important
如果指定了已分配的端口号,则直到您更改新网站的端口号或旧网站的端口号时,IIS 才会启动新网站。
|
SecureSocketsLayer |
可选 |
System.Management.Automation.SwitchParameter |
对此 Web 应用程序启用安全套接字层 (SSL) 加密。如果使用 SSL,则必须使用 IIS 管理工具在每个服务器中添加证书。完成此操作之前,将无法从此 IIS 网站访问 Web 应用程序。 |
SignInRedirectProvider |
可选 |
Microsoft.SharePoint.PowerShell.SPTrustedIdentityTokenIssuerPipeBind |
设置登录重定向 URL,使其指向在指定验证提供程序中定义的 URL。 |
SignInRedirectURL |
可选 |
System.String |
指定 Web 应用程序的登录重定向 URL。 |
Url |
可选 |
System.String |
指定 Web 应用程序区域的负载平衡 URL。 |
WhatIf |
可选 |
System.Management.Automation.SwitchParameter |
显示一条描述命令作用的消息,而不执行命令。有关详细信息,请键入以下命令:get-help about_commonparameters |
输入类型
返回类型
Example
------------------示例-----------------------
Get-SPWebApplication http://sitename | New-SPWebApplicationExtension -Name "ExtranetSite" -SecureSocketsLayer -Zone "Extranet" -URL "https://extranet.sitename.com"
此示例将网址为 http://sitename
的给定 Web 应用程序扩展为 Extranet
区域以便使用 SSL。