Skip to main content

Posts

Showing posts from January, 2013

Enable Auditing KCC in ServerCore

In a Windows Environment running Active Directory, Knowledge Consistency Checker (KCC) is responsible for creating connection objects and builds replication topology which is at the heart of Multi-Master Replication. To audit if the KCC is up and running or actually the replication changes are occurring, We can enable auditing by changing a Registry Entry. But as I have a ServerCore running a Domain Controller I will do this on it First Create a New PowerShell Session and then enter it. Most of you will be familiar with PSDrives which are nothing but an abstraction which helps you see various datastores like Registry as Drives. Now the HKLM:\ is the Drive for HKEY_LOCAL_MACHINE registry hive. HKLM:\SYSTEM\CurrentControlSet\Services\NTDS\Diagnostics is the Registry key where we need to change the "1 Knowledge Consistency Checker" property to any value between 0-5 where 0 is no auditing and 5 is the  maximum auditing messages. I will select 2 just in case. Go ahead and c

Enable-RemoteDesktop -computername DexServerCore

Now, Basically why to enable remote desktop on a ServerCore ? When you have already WinRM and PowerShell remoting already kicking. Well, I honestly can't say why to enable it...cause I have the ServerCore machine sitting up on my Hyper-V Server and I could "connect" to it as easily. But it's good to know that it could be done. With Server 2012 you could add a GUI or a Servercore...but there is something called Minimal Server Interface as well in Server 2012 (plus Server 2012 gives you ability to switch between all these installations too). So you might want to read up on this here . So a use scenario can be to add Minimal Server Interface on a remote host for the time being , Enable Remote Desktop  and perform Admin tasks which occur rarely. How to Enable Remote Desktop ? Well from what I could understand there are 2 registry entries which control this. 1. fDenyTSConnections under  'HKLM:\System\CurrentControlSet\Control\Terminal Server'. This Re