博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharePoint 2010 PowerShell 系列 之 Create WebApplication
阅读量:4977 次
发布时间:2019-06-12

本文共 1490 字,大约阅读时间需要 4 分钟。

文字描述比较不容易说清楚,直接贴代码吧

# check to ensure Microsoft.SharePoint.PowerShell is loaded$snapin = Get-PSSnapin | Where-Object {
$_.Name -eq 'Microsoft.SharePoint.Powershell'}if ($snapin -eq $null) { Write-Host "Loading SharePoint Powershell Snapin" Add-PSSnapin "Microsoft.SharePoint.Powershell"}Write-Host "Starting create WebApplication"$WebAppName = "SharePoint - 999"$WebAppPort = 999$WebAppPool = "SharePoint - 999"$WebAppDBName = "WSS_Content_999"#Delete any existing Webapplication by name$targetUrl = Get-SPWebApplication $WebAppNameif($targetUrl -ne $null){ Write-host "Deleting existing webapplication:" $WebAppName Remove-SPWebApplication $WebAppName -confirm -DeleteIISSite -removeContentDatabase Write-host "Deleted Site and ContentDatabase successful." -foregroundcolor red}Write-Host "Please waiting......" -foregroundcolor green$WebApp = New-SPWebApplication -Name $WebAppName -Port $WebAppPort -ApplicationPool $WebAppPool -DatabaseName $WebAppDBName -ApplicationPoolAccount (get-SPManagedAccount "T\Administrator")Write-Host "WebApplication Created successfully"#display WebApplication InfoWrite-HostWrite-Host "------------------------------" -foregroundcolor GreenWrite-Host "Name:" $WebApp.Name -foregroundcolor YellowWrite-Host "URL:" $WebApp.Url -foregroundcolor YellowWrite-Host "------------------------------" -foregroundcolor Green

在每次处理的时,都要添加 Microsoft.SharePoint.PowerShell,否则会出错的。

 

转载于:https://www.cnblogs.com/Fengger/archive/2012/06/30/2571360.html

你可能感兴趣的文章
VS部署中的ProductCode问题
查看>>
linux 下C++查询mysql数据库
查看>>
ASM 1——概念简介
查看>>
HDU 1754 I Hate It(线段树区间求最值)
查看>>
SQL 理论知识总结
查看>>
Effective java笔记3--类和接口2
查看>>
properties 的生成与解析配置文件
查看>>
零基础小白怎么用Python做表格?
查看>>
oracle 按照时间间隔进行分组
查看>>
doGet & doPost
查看>>
jQuery动画
查看>>
Windows Phone 7 和 Iphone 联系人带头像同步方案
查看>>
jquery判断两次密码不一致
查看>>
三、oneinstack
查看>>
ASP.NET数据格式的Format-- DataFormatString
查看>>
1.3 将临时变量内联化
查看>>
Android onLowMemory()和onTrimMemory()
查看>>
TextView 设置maxLength
查看>>
大道至简 读后有感
查看>>
让git不再跟踪配置文件的变化
查看>>