interview question and answer

November 18, 2012

Disable Strict Name Checking

1- Allow proper network access to a server using a DNS alias:

See 281308 Connecting to SMB share on a Windows 2000-based computer or a Windows Server 2003-based computer may not work with an alias name

Or copy out the codes below into a .REG file and import it.


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]
"DisableStrictNameChecking"=dword:00000001
2-Also may need to disable Loopback checking:
926642

DisableLoopbackCheck registry entry in the KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa registry subkey to 1. To set the DisableLoopbackCheck registry entry to 1, follow these steps on the client computer: 
- Click Start, click Run, type regedit, and then click OK. 
- Locate and then click the following registry subkey: 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa

- Right-click Lsa, point to New, and then click DWORD Value. 
- Type DisableLoopbackCheck, and then press ENTER. 
- Right-click DisableLoopbackCheck, and then click Modify.
- In the Value data box, type 1, and then click OK. 
- Exit Registry Editor.
- Restart the computer.

Windows 2008
It still works for Windows 2008.

No comments: