您的位置:首页 > 移动开发

NetBiosDomainNamesEnabled与SharePoint User Profile Service Application

2013-06-21 16:49 477 查看
本文中的内容转自参考资料中的文章.

 

如果域的NetBios名字跟Fully Qualified Domain Name不同的话, 那么就需要开启UPA的NetBiosDomainNamesEnabled属性为true, 默认这个值为false的.

 

如何判断你domain的NetBios name跟FQDN是否不同呢?

看下图.





 

下面的脚本可以在SharePoint服务器上运行, 设置该属性.

$ServiceApps = Get-SPServiceApplication
$UserProfileServiceApp = ""
foreach ($sa in $ServiceApps)
{
if ($sa.DisplayName -eq "<UPSAname>")
{
$UserProfileServiceApp = $sa}
}
$UserProfileServiceApp.NetBIOSDomainNamesEnabled = 1
$UserProfileServiceApp.Update()



 

参考资料

==========================

NetBiosDomainNamesEnabled and SharePoint User Profile Service Application

http://meandmysharepoint.blogspot.com/2012/09/netbiosdomainnamesenabled-and.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: