Đang chuẩn bị liên kết để tải về tài liệu:
Active Directory Cookbook for windows server 2003- P43

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

Active Directory Cookbook for windows server 2003- P43:If you are familiar with the O'Reilly Cookbook format that can be seen in other popular books, such as the Perl Cookbook, Java Cookbook, and DNS and BIND Cookbook, then the layout of this book will not be anything new to you. The book is composed of 18 chapters, each containing 10-30 recipes for performing a specific Active Directory task. Within each recipe are four sections: problem, solution, discussion, and see also. | Recipe 13.14 Preventing a Domain Controller from Dynamically Registering All Resource Records 13.14.1 Problem You want to prevent a domain controller from dynamically registering its resource records using DDNS. If you manually register domain controllers resource records you ll want to prevent those domain controllers from attempting to dynamically register them. If you do not disable them from sending dynamic update requests you may see annoying error messages on your DNS servers that certain DDNS updates are failing. 13.14.2 Solution 13.14.2.1 Using a command-line interface reg add HKLM System CurrentControlSet Services Netlogon Parameters v RETURN UseDynamicDNS t REG_DWORD d 0 The operation completed successfully. net stop netlogon The Net Logon service is stopping. The Net Logon service was stopped successfully. del SystemRoot system32 config netlogon.dnb net start netlogon The Net Logon service is starting. The Net Logon service was started successfully. 13.14.2.2 Using VBScript This code prevents a DC from registering resource records dynamically. It must be run directly on the server. Create Registry Value const HKLM H80000002 set oReg GetObject winmgmts root default StdRegProv strKeyPath System CurrentControlSet Services Netlogon Parameters if oReg.SetDWORDValue HKLM strKeyPath UseDynamicDNS 1 0 then WScript.Echo Error creating registry value else WScript.Echo Created registry value successfully end if Stop Netlogon service strService Netlogon set objService GetObject WinMgmts root cimv2 Win32 Service.Name strService if objService.StopService 0 then WScript.Echo Error stopping strService service else WScript.Echo Stopped strService service successfully end if 431 Delete netlogon.dnb file set WshShell CreateObject WScript.Shell set objFSO CreateObject Scripting.FileSystemObject set objFile objFSO.GetFile WshShell.ExpandEnvironmentStrings SystemRoot system32 config netlogon.dnb objFile.Delete WScript.Echo Deleted netlogon.dnb successfully Start Netlogon .

TÀI LIỆU LIÊN QUAN
crossorigin="anonymous">
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.