View Single Post
  #1 (permalink)  
Old 06-04-2009, 09:27 PM
Tribmos Tribmos is offline
Junior Member
 
Join Date: Jun 2009
Posts: 8
Default Users from Active Directory

I'm wanting to start using the User Portals and therefore started up the Active Directory (SBS 2008 w/ Exchange 2007) syncing within Astaro (ASG 7.402). I setup everything and began pulling over AD users. The "real name" and "additional email addresses" did not transport over.

I could live without the real name, however some of the users have extensive additional emails and I found that if i manually re-add, the next sync clears them again.

Ideally the Astaro would pull the main email and their additional ones from their AD object, thus their User portal contents cover all of their email. Any help is appreciated.

*Edit* I just found some VBScript that shows the current users full email settings
Code:
Set wshNetwork = CreateObject("WScript.Network")

Set ADSysInfo = CreateObject("ADSystemInfo")
Set CurrentUser = GetObject("LDAP://" & ADSysInfo.UserName)
strMail = Join(CurrentUser.proxyAddresses)

MsgBox strMail , 0, wshNetwork.UserName & "'s email addresses"

Last edited by Tribmos; 06-04-2009 at 09:45 PM. Reason: more info
Reply With Quote