Archive for January, 2010

Ma süthet ki utoljára a nap - index.hu

January 29th, 2010 | Category: Egyéb

http://index.hu/belfold/2010/01/29/ma_suthet_ki_utoljara_a_nap/

Igen, és holnap világvége…
index

No comments

C# AD search

January 21st, 2010 | Category: Windows

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.DirectoryServices;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
try
{
// Bind to the container to enumerate.
DirectoryEntry ent = new DirectoryEntry(”LDAP://OU=Users,DC=Domain,DC=local”);
// Create an object to use for individual objects in the container and iterate
// through the container.
foreach (DirectoryEntry child in ent.Children)
{
// Write the name and path for each object in the container.
Console.WriteLine(”{0} {1}”, child.Name, child.Path);
}

}
catch
{
// Handle errors.
}

}
}
}

No comments

http://kolelinia.com/en/

January 16th, 2010 | Category: Uncategorized

http://kolelinia.com/en/

No comments