Powershell记录2

简介:
Powershell:
 取得Sharepoint Site:
  spsite=setspsiteidentityspsite=set−spsite−identity url -sitesubscription  subconfirm:sub−confirm: false -force: tureUrlsiteture取得Urlsite: urlsite = get-spsite|where{ .urleq.url−eq url}
 if( urlsite.siteSubscriptionneurlsite.siteSubscription−ne null)
 {
  subscription=getspsitesubscriptionidentitysubscription=get−spsitesubscription−identity url
 }
 
设置TestRunConfig.testrunconfig,把powershell放到环境变量
 # change the system powershell to the sharepoint management shell
  env:path=env:path= env:path+";C:\program files\common files\microsoft shared\web server extensions\14\config\powershell\registration\"
 
# start the sharepoint 2010 managment shell
 SharePoint.ps1
 
IIS7 显示:
 HTTP Error 403.14 – Forbidden
 需要有个配置功能
 增加web.config
 <?xml version="1.0" encoding="utf-8" ?>
 <configuration>
 <system.webServer>
 <directoryBrowse enabled="true"/>
 </system.webServer>
 </configuration>
 

XmlTextReader.EOF 属性获取一个值,该值指示读取器是否定位在流的结尾。





本文转自轩脉刃博客园博客,原文链接:http://www.cnblogs.com/yjf512/archive/2010/10/29/1864414.html,如需转载请自行联系原作者

相关文章
|
Windows
Windows DOS窗口查看历史执行过的命令的三种方式
Windows DOS窗口查看历史执行过的命令的三种方式
|
Windows
PowerShell添加或修改注册表开机启动项脚本
代码如下: $name = Read-Host "请输入开机启动项的名字(随便起)" $value = Read-Host "请输入开机启动项的值" try{ New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" -Name $name -PropertyType String -Value $value -ErrorAction Stop $tip = "成功添加开机启动项"+$name+"。
2278 0
|
网络安全 数据安全/隐私保护 Windows