MOSS

导航

Sharepoint 2010 Powershell 修改网站认证方式

$App = get-spwebapplication “URL”

$app.useclaimsauthentication = “True”

$app.Update()

例子

$App = get-spwebapplication “http://sp1”

$app.useclaimsauthentication = “True”

$app.Update()

posted on 2013-03-11 17:23  liuyuhua  阅读(155)  评论(0编辑  收藏  举报