在sharepoint 2013中,我必须通过脚本使用sharepoint活动目录创建用户配置文件同步连接。我已经使用powershell创建了用户配置文件服务,之后可以选择“配置同步设置”中的选项以选择“在同步选项中使用SharePoint Active Directory”。之后,我必须使用脚本创建同步连接。
我有sharepoint 2010的脚本,但我找不到sharepoint 2013的脚本。如果有人试过这个,请帮帮我
谢谢
感谢选择该选项工作正常..但我之后无法创建连接这是我用来创建连接的代码
Add-SPProfileSyncConnection -ProfileServiceApplication 53eb09e7-4269-4e88-9109-ea29f603043a
-ConnectionForestName“abcde.com”
-ConnectionDomain“abcde”
-ConnectionUserName“username”
-ConnectionPassword“password”-asplaintext -force
-ConnectionSynchronizationOU“OU = abc,DC = abcde,DC = com”
此脚本出现以下错误
Add-SPProfileSyncConnection:无法访问代理。请验证一下 代理正在运行。 在行:1个字符:1 + Add-SPProfileSyncConnection + ~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:InvalidData:(Microsoft.Offic ... eSyncConnection: SPCmdletAddProfileSyncConnection)[Add-SPProfileSyncConnection],ArgumentE xception + FullyQualifiedErrorId:Microsoft.Office.Server.UserProfiles.PowerShell。 SPCmdletAddProfileSyncConnection
for -ConnectionSynchronizationOU我给出了正确的参数??你可以帮帮我吗?
答案 0 :(得分:1)
这是来自我的博客 http://www.benjaminathawes.com/blog/Lists/Posts/Post.aspx?ID=42
$ upa = Get-SPServiceApplication -Name“UserProfileServiceAppName”
$ upa.NoILMUsed = $真
$ upa.Update()
我还建议您查看Spence关于AD直接导入的文章: http://www.harbar.net/archive/2012/07/23/sp13adi.aspx