SharePoint自动化系列——通过PowerShell创建SharePoint Web

转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/

代码如下(保存到本地ps1文件中,右键run with PowerShell即可):

Add-PSSnapin Microsoft.SharePoint.PowerShell
function createSPWeb()
{
    $webApps = Get-SPWebApplication
    chooseWebAppAndSelectSite $webApps
}
function chooseWebAppAndSelectSite($webApps)
{ 
    Write-Host "Web applications in the farm:" -ForegroundColor Yellow
    for($i=0;$i -le $webApps.count-1;$i++)
    {
        $tip = "[" + $i.ToString() +"]" + $webApps[$i].name
        Write-Host  $tip -ForegroundColor Green
    }
    $choice = Read-Host "Select the web application, enter the number before"   
    $siteCollections = Get-SPSite -WebApplication $webApps[$choice].url
    if($siteCollections.count -eq 0)
    {
        #Write warning tip here.
        Write-Warning "There is no site collection under the web application, you need to make an alternative choice."
        chooseWebAppAndSelectSite $webApps
    }
    else
    {
        Write-Host "Site collections under the web application:" -ForegroundColor Yellow
        for($i=0;$i -le $siteCollections.count-1;$i++)
        {
            $tip = "[" + $i.ToString() + "]" +$siteCollections[$i].url
            Write-Host $tip
        }
        $choice = Read-Host "Select the site collection, enter the number before"
        $tip = "You want to create a new web(subsite) under the site collection " + $siteCollections[$i] + "? Enter 'y' to verify"
        Write-Host $tip -ForegroundColor Cyan
        $newChoice =Read-Host 
        if($newChoice -eq "y")
        {
            $name = Read-Host "Please enter the name of the web(subsite)"
            $webUrl = $siteCollections[$choice].url + "/" + $name
            write-host "The web(subsite) is creating, please wait for a moment..." -ForegroundColor DarkGreen
            New-SPWeb -Url $webUrl -Name $name -Template "STS#0"
            Write-Host "The web(subsite) has been created. The url is above." -ForegroundColor Green
        }
    }
}
createSPWeb

运行界面:

创建Site Collection的脚本,详见上一篇blog

转载于:https://www.cnblogs.com/LanTianYou/p/4825747.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值