Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to add custom objects to Active directory?

Status
Not open for further replies.

sgupte

ISP
Feb 21, 2001
18
IN
I need help in creating and adding custom objects in Active Directory. By default it allows us to add Computer, Contact, Group, Organizational Unit, Printer, User & Shared Folder in the "Active Directory Users & Computers" snap-in.

My requirement is to create a new object called Device with custom Attributes and add these Devices to an Organizational Unit.

Is it possible? If Yes, how to do it? Please reply if any one knows.......

-sgupte
 
How do I implement a custom Windows 2000 Group Policy?

In article Implementing Registry-Based Group Policy, Microsoft explains how to build a custom Group Policy.

If you wanted to implement DnsUpdateOnAllAdapters, you could:

01. copy/paste the following to a DnsUpdateOnAllAdapters.adm file:


Class Machine

Category !!AdministrativeServices

Category !!DNSClient


Policy !!DnsUpdateOnAllAdapters
Keyname "System\CurrentControlSet\Services\Tcpip\Parameters"
Explain !!DnsUpdateOnAllAdapters_Help
Valuename "DnsUpdateOnAllAdapters"
End Policy


End Category ;;DNS Client

End Category ;;AdministrativeServices

[strings]
AdministrativeServices="System"
DNSClient="DNS Client"
DnsUpdateOnAllAdapters="Enable Dynamic Update On All Adapters"
DnsUpdateOnAllAdapters_Help="Restore Pre-SP1 DDNS functionality."

;End of Strings
02. Open Active Directory Users and Computers and right-click the target domain or OU. Press Properties.
03. Select the Group Policy tab and edit the GPO to which you wish to add the custom policy.

04. Navigate to Computer Configuration / Administrative Templates.

05. On the View menu, clear the Show Policies Only box.

06. Right-click Administrative Templates and press Add/Remove Templates.

07. Press Add and select the DnsUpdateOnAllAdapters.adm file. Press Close.

08. Navigate to Computer Configuration / Administrative Templates / System / DNS Client.

09. Double-click Enable Dynamic Update On All Adapters.

10. Press Enable and OK.

11. You could run SECEDIT /REFRESHPOLICY MACHINE_POLICY /ENFORCE.


Regards

Jonno BrainDump Specialist
MCSE(NT) MCSA(2k) CCNA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top