|
|
|
|
|
Home
»
VB.NET
»
Changing User Information using Active Directory
|
|
|
Author Rank:
|
|
Total page views :
18282
|
|
Total downloads :
|
|
|
|
|
|
Similar ArticlesMost ReadTop RatedLatest
|
|
|
|
|
|
|
|
|
|
If your company is one of the lucky? Ones to implement Windows 2000 Active Directory you may have been looking for a way to populate it with data. Perhaps adding people's details from a file directly into the active directory.
The problem I faced was a brand new active directory and a brand new exchange server 2000. In a standard Windows 2000 Active Directory, if I wanted to add a contact I would use the Active Directory User's and Computers addin. However when you install Exchange Server 2000 into such a network it makes extensive modifications to the Active Directory Schema. Because of this, if you have Exchange Server 2000 running you have to use Exchange's version of active directory users and computers because only that version knows about Microsoft Exchange's modification to the Active Directory Schema.
Phew, now I have set the scene, remember firstly to not test code like this on a production active directory or face the wrath of your system admins J.
My problem was I have a .CSV file with 290 contacts which needed to be fed into the Active Directory contacts, specifically in an Organization Unit or OU called Email Contacts.
Of course I could have typed them all in by hand or spend an hour or so building some C# code to do this. I choose the latter J.
My first task was to work out which fields I needed to update for a contact. The way to do this is to use the CSVDE utility (included with windows 2000 server) to output a .CSV file of a current OU. Doing this tells you what fields to use to add the contact.
I wanted to modify four fields - first name, last name; display name, and email. These translated in Active Directory terms to - givenname,sn,displayname,mail. As you can see Active Directory fields are not always as intuitive as you think.
Now I needed a way to import the .CSV file one line at a time and give me the four items of data. In other languages like VBA I would use string chopping techniques like Left, Right and Instr but with C# the string class has a method called Split . If you have not used this it allows you to give it a separator character or multiple separators in a char array and return a string array. Having used this the rest of the code is pretty straightforward.
Note that active directory will only add an item if all fields etc are correct. In my case some of the emails had characters in them which active directory bounced back. By using a try - catch block to catch these and outputting the problem contacts to the console I was able to go back and modify them till all 290 contacts went cleanly into the Active Directory. In my case the code completes in around 3 seconds.
Okay so now I have 290 contacts in Active Directory. The last problem was they were not showing up in the Exchange Global Address List. The reason for this was that they were not exchange enabled. This meant they were proper Active Directory contacts but of course Exchange needed a lot more information before they would appear in the global address list.
I could have spent more time researching this or do it the lazy way. If you go into the Exchange version of active directory users and computers and go to where you added the contacts you can right-click each contact, select Exchange Tasks and then select an option to create the Exchange contact.
I manually updated 290 contacts in 15 minutes. Sometime you have to take the long way as sometimes it's quicker.
You would be amazed how many companies have a Windows 2000 Active Directory but have not added things like peoples details, addresses etc simply because nobody wants to manually enter them. This article shows that as long as you have the data in a file you can add it easily using code.
Source Code:
' ActiveDirectoryAddContacts ' Adds contacts from a CSV file into the Active Directory ' Written 08/12/02 by John O'Donnell
Imports System Imports System.IO Imports System.DirectoryServices Namespace ActiveDirectoryAddContacts Class Class1 Shared Sub Main(ByVal args() As String) Dim DSESearcher As System.DirectoryServices.DirectorySearcher = New System.DirectoryServices.DirectorySearcher Dim RootDSE As String = DSESearcher.SearchRoot.Path RootDSE = RootDSE.Insert(7, "ou=Email Contacts,") Dim myDE As DirectoryEnTry = New DirectoryEnTry(RootDSE) Dim myEntries As DirectoryEntries = myDE.Children Dim fs As FileStream = New FileStream ("e:\\programs\\dotnet\\activedirectoryaddcontacts\\input.csv", FileMode.OpenOrCreate, FileAccess.Read) Dim sr As StreamReader = New StreamReader(fs) Dim i As Integer For i = 1 To 291 - 1 Step i + 1 Dim str As String = sr.ReadLine() Dim ca() As Char = {","c} Try Dim sa() As String = str.Split(ca, 4) Dim myDirectoryEnTry As DirectoryEnTry = myEntries.Add("CN=" + sa(2), "contact") myDirectoryEnTry.Properties("givenname").Value = sa(0)myDirectoryEnTry.Properties("sn").Value=sa(1) myDirectoryEnTry.Properties("displayname").Value=sa(2) myDirectoryEnTry.Properties("mail").Value=sa(3)myDirectoryEnTry.CommitChanges() Catch e As Exception Console.WriteLine(str) End Try Next End Sub End Class End Namespace
|
|
|
Login
to add your contents and source code to this article
|
|
|
|
|
|
|
|
John O Donnell
John O’Donnell is a former Microsoft UK employee and is an MCSE. Currently John works in Chicago for MAS Consulting (www.mcas.com) as a Senior Technical Consultant. He is available for C# contract work across the USA .
|
|
|
|
|
|
|
|
|
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional
consulting company, our consultants are well-known experts in .NET and many of them
are MVPs, authors, and trainers. We specialize in Microsoft .NET development and
utilize Agile Development and Extreme Programming practices to provide fast pace
quick turnaround results. Our software development model is a mix of Agile Development,
traditional SDLC, and Waterfall models.
|
|
Click here to learn more about C# Consulting. |
|
|
|
|
|
|
|
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon.
Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees.
As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
|
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
|
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
|
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today. With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications. Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
|
60 FREE UI Controls from DevExpress
Register for your FREE copy on over 60 free presentation controls from
DevExpress - Absolutely Free-of-Charge without any royalties or distribution
costs. Visit Devexpress.com/60 today. Free controls include advanced lists box, dropdown calendar, rich text edit, spin
edit, tab control and so much more!
DevExpress engineers feature rich presentation controls and reporting tools for WinForms, ASP.NET, WPF, and Silverlight. Our technologies help you build your best, see complex software with greater clarity and deliver compelling business solutions for Windows and the web in the shortest possible time.
|
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or
application via a range of API's. Learn More about our API connections.
|
Microsoft Visual Studio 2010
Visualize your workspace with new multiple monitor support, powerful Web development, new SharePoint support with tons of templates and Web parts, and more accurate targeting of any version of the .NET Framework. Get set to unleash your creativity.
|
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
|
Developer-Ready ASP.NET 2.0 Web Hosting with 3 MONTHS FREE
Now supporting .NET 3.0 Framework with Windows Workflow Foundation, Windows Communication Foundation (WCF), Windows Presentation Foundation (WPF), windows CardSpace (WCS)! Providing more flexibility for Developers with Web Services Support and a User/Permission Manger. Also supporting MS SQL 2005/2000 with Real-Time Backups, FREE Automated Attach .MDF Tool, FREE SQL Restore and Shrink SQL DB Tools, and SQL
|
|
|
|
|
|
|
|
|
|
|
|
|