• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyway to enable this DNS option using Group Policy in Win2K3?

NathanBWF

Golden Member
Anyway to enable this setting using Group Policy? I thought that enabling this option would do the trick, however when I log in with my test user that option doesn't get applied. I know the policy is being applied properly because I also set it to remove the My Documents link from the start menu, which it does. I've also made sure that it isn't being over written by another policy.

Ideas?
 
only way i found was a vbs script

Set WshShell = CreateObject("WScript.Shell")
Set NIC = GetObject("winmgmts:").ExecQuery ("select * from Win32_NetworkAdapterConfiguration")


for each instance in NIC
if instance.ipenabled then
WshShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\"&instance.
ettingid&"\RegisterAdapterName", 1, "REG_DWORD"
WshShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\"&instance.
ettingid&"\RegisterAdapterName","HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\"&instance.
ettingid&"\RegistrationEnabled", 1, "REG_DWORD"
end if
next
 
Back
Top