All Tags »
microsoft Technologies _ Active Directory _ Programming
Sorry, but there are no more tags available to filter with.
-
Gotcha number one, when doing some domain coding you can easly get some domain information using the following code:
Dim MyDomain as Domain = Domain.GetCurrentDomain
‘To get the Domain Parent i.e. the parent of the domain in the Domain ‘
‘tree
Dim MyDomainParent as String = MyDomain.Parent
Pretty easy ...
-
Well being doing some AD operations as usual and having 10 Kb’s open at the same time and going through 100000 steps (which are all similar) to fix a small but serious problem, has started to take its toll. These things should be automated and I know the team cant automate everything so this is where I step into the equation.
I was ...