博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharePoint 特殊用户标识
阅读量:5272 次
发布时间:2019-06-14

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

To get claim for All Authenticated Users in PS you need to use:

$claim = New-SPClaimsPrincipal -EncodedClaim "c:0(.s|true"

for windows users (NT AUTHORITY\authenticated users):

$claim = New-SPClaimsPrincipal -EncodedClaim "c:0!.s|windows"

and for all forms authenticated users (basic asp.net membership provider)

$claim = New-SPClaimsPrincipal -EncodedClaim "c:0!.s|forms:aspnetsqlmembershipprovider"

NOTE: Need to use EnsureUser() or else the add method will not work.

$allAuthenticatedUsers = $web.EnsureUser(“c:0!.s|windows”);

$web.AssociatedVisitorGroup.Users.Add($allAuthenticatedUsers,””,”c:0!.s|windows”,””)
$web.update()

 

http://sptrac.com/wordpress/?p=88

转载于:https://www.cnblogs.com/jianyus/p/10008874.html

你可能感兴趣的文章
汇编指令
查看>>
Leader of All Crushing Machines in the Future
查看>>
luogu 4211
查看>>
Sql Server 默认值
查看>>
JavaEE之反射
查看>>
【转】经验分享:大型高并发高负载网站的系统架构
查看>>
HDU 6060 RXD and dividing (求贡献)
查看>>
java中 immutable,future,nio
查看>>
VMware ESX常用命令
查看>>
golang三方包应该如何安装--在线和离线
查看>>
选择排序
查看>>
鼠标移入移出透明度变化效果
查看>>
我工作这十年-世界在变化
查看>>
log4j2 不使用配置文件,动态生成logger对象
查看>>
[IOI2014]holiday假期(分治+主席树)
查看>>
从gitbook将书籍导入到github中
查看>>
python的上下文管理(contextlib)(2)
查看>>
mysql安装
查看>>
运算符有感
查看>>
设置dataGridView单元格颜色、字体、ToolTip、字体颜色
查看>>