1. 显示场中的Web应用程序
Get-SPWebApplication
2. 获取指定的Web应用程序
$webApp = Get-SPWebApplication -Identity "PSWebApp"
3. 移除一个Web应用程序
$webApp = Get-SPWebApplication -Identity "PSWebApp"Remove-SPWebApplication $webApp
或者
Remove-SPWebApplication –Identity "PSWebApp"
当不再使用此Web应用程序时,可以增加-RemoveContentDatabases参数
4. 新建一个Web应用程序
New-SPWebApplication –applicationpool NewWebApp -name NewWebApp-applicationpoolaccount SP\AppPoolAccount -port 80
5. 配置Web应用程序
Set-SPWebApplication
可以使用
Set-SPWebApplication -?
查看该命令的三个参数集:使用第一组参数配置默认的定额模版、默认的时区、服务应用程序代理组;使用第二组参数配置Web应用程序的区域连同关联的认证设置;最后一组参数配置邮件设置。
6. 扩展一个Web应用程序
New-SPWebApplicationExtension –Identity "SharePoint – 80"–Name "SP Internet Site" –Zone Internet –Url "http://internet"–HostHeader
7. 创建一个备用访问映射URL
New-SPAlternateURL –URL "http://intranet.sp2010.com"–WebApplication "SharePoint - 80" –Internal –Zone Intranet
8. 显示所有的备用访问映射
Get-SPAlternateURL
9. 获取指定的备用访问映射
$altURL = Get-SPAlternateURL -Identity
10. 更改备用访问映射的区域
Set-SPAlternateURL –Identity "http://intranet.sp2010.com"–Zone Intranet
11. 移除一个备用访问映射
Remove-SPAlternateURL –Identity