Enabling Remote Registry Service

Windows Server offers the possibility of remote connecting to a Windows Server to edit its registry. This service is not enabled by default on Windows Server and you must enable it before being able to remotely modify registry settings.
To enable this service you can either RDP on each machine and use the Services console to enable the service or by using a Powershell script which automates this operation.

Enabling Remote Registry Service

You can run the following Powershell command to achieve similar results.
sc \\computername config remoteregistry start= auto
sc \\computername start remoteregistry

You can also use newer Powershell cmdlets like Set-Service or Start-Service. Execute the following command to view the service related commands: Get-Command | Where-Object { $_.Name -like “*service”}
Now that the service has been started, you can open Registry Editor and connect to the remote machine by navigating to File -> Connect and specify the remote server name:

How to determine what .NET framework is installed on your server

Hy folks,
In this article I will show you how to verify what .NET framework version is installed on your Windows Server. I’ve encountered this problem when upgrading Powershell to version 4.0. In Windows Server 2012, one requirement before upgrading Powershell, is to install the latest .NET framework version (V4.5). The common way to achieve this is to verify what version is installed by checking the Programs and Features section in Control Panel. Note that if .NET framework is not shown here, you must upgrade it before you install Windows Management Framework 4.0.
You can also verify the installed framework version in registry editor. Open regedit from a run prompt and navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP:
Registry editor
In this section you will see all the installed .NET framework versions. If V4.5 is installed, this is how the registry key should look like:
Registry editor
You can download the latest framework version from Microsoft’s website. Once you’ve installed this pack, you can safely upgrade Powershell to version 4.
That’s it for this article folks, wish you all the best and stay tuned for the following posts from IT training day.