Question : Manage Contacts in Active Directory / Exchange Distribution Lists

Hello guys.  Would love some good advice here.  Here is my situation.  We use DotNetNuke as our CMS tool for our website.  Built in to that, of course, is the user / membership database.  We also manage those same users in Active Directory as CONTACTS (not users) .  These contacts are also part of many, many exchange distribution lists.  It has become quite cumbersome to manage this process.  Does anyone have any good suggestions of a third party app / module...whatever, that can manage all of this information in a one stop shop scenario?

Would love to avoid having to go to dotnentnuke to manage the users info and Active Directory to manage the user's exchange distribution list membership.  Any ideas on what might be out there to help me manage it all in ONE PLACE!!

Thanks so much everyone!

Answer : Manage Contacts in Active Directory / Exchange Distribution Lists

Ooops.. made a mistake, thats what happens when you copy from old code I wrote :P

Try this
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
Const HKEY_LOCAL_MACHINE = &H80000002
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")

strKeyPath = "SYSTEM\CurrentControlSet\Services\lanmanserver\parameters"
strVal = "IRPStackSize"

oreg.getdwordvalue HKEY_LOCAL_MACHINE,strKeyPath,strVal,dwValue
if isnull(dwValue) then 
	oReg.SetDwordValue HKEY_LOCAL_MACHINE,strKeyPath,strVal,33
Else
	WScript.Echo dwvalue 
	If dwvalue <> 33 Then oReg.SetDwordValue HKEY_LOCAL_MACHINE,strKeyPath,strVal,33
End If
Random Solutions  
 
programming4us programming4us