MOSS

导航

2013年3月11日 #

Sharepoint 2010 Powershell 修改网站认证方式

摘要: $App = get-spwebapplication “URL”$app.useclaimsauthentication = “True”$app.Update()例子$App = get-spwebapplication “http://sp1”$app.useclaimsauthentication = “True”$app.Update() 阅读全文

posted @ 2013-03-11 17:23 liuyuhua 阅读(168) 评论(0) 推荐(0)