HOWTO: Verify & Configure Remote Desktop Connections
  • 27 May 2021
  • 3 Minutes to read
  • Dark
    Light
  • PDF

HOWTO: Verify & Configure Remote Desktop Connections

  • Dark
    Light
  • PDF

Article Summary

This article offers step-by-step guidance on how to define a desired configuration with OtterScript that will verify that remote desktop connections are enabled in Windows and allowed in the Windows Defender Firewall.

If remote desktop connections are not enabled, then Otter will report this as "configuration drift" and give you the option to automatically remediate configuration drift by ensuring remote desktop connections are enabled.

Create "EnsureRemoteDesktopConnections" Script

Otter uses Scripts to store PowerShell scripts. When you're using your own scripts, you may need to modify them to detect & remediate drift; however the script below will work as is.

  1. Navigate to Scripts and create a new PowerShell script named EnsureRemoteDesktopConnections
  2. Click on EnsureRemoteDesktopConnections to edit it
  3. Copy/paste the contents of the EnsureRemoteDesktopConnections PowerShell script from below
    a. Alternatively, you can use the EnsureDisabledRemoteDesktopConnections script to disable remote desktop connections
  4. Save the Script

Create "WindowsRemoteSettings" Role

Otter uses server roles to define desired configuration states using OtterScript.

  1. Navigate to Roles and create a new role named WindowsRemoteSettings
  2. Navigate to the Desired Configuration tab of the new Role
  3. Click create to the right of Configuration Plan
  4. Add your EnsureRemoteDesktopConnections powershell script operation to your OtterScript plan.
    a. Select Collect & Remediate configuration (PSEnsure) for the Script execution mode option if you'd like Otter to remediate, or Verify configuration (PSVerify) if you'd only like to report drift

Next, assign the WindowsRemoteSettings server role to your servers and check for drift! You can also remediate the drift if you configured to do so.

Example OtterScript Desired Configuration

This is only an example, and your desired configuration may look different.

PSEnsure EnsureRemoteDesktopConnections;

EnsureRemoteDesktopConnections PowerShell Script

You can copy/paste this script directly, or modify it as needed.

NOTE:

This example also disables Network Level Authentication in the remote desktop connection settings, this can easily be updated to enable that setting if needed. This is configured via UserAuthenticationRequired on the WmiObject.

<# 
.SYNOPSIS
Ensures Remote Desktop Connections are allowed on the server

.AHCONFIGKEY
Enable Remote Desktop Connection

.AHCONFIGTYPE
Windows Settings

.AHEXECMODE 
$ExecutionMode
#>

if ($ExecutionMode -eq "Collect") {
    $remoteDesktopConnectionDeniedValue = (Get-ItemPropertyValue -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections")
    
    $rdpNetworkLevelAuthenticationValue = (Get-WmiObject -class "Win32_TSGeneralSetting" -Namespace root\cimv2\terminalservices -Filter "TerminalName='RDP-tcp'").UserAuthenticationRequired
    
    $firewallRulesEnabled = (Get-NetFirewallRule -DisplayGroup "Remote Desktop" | Where-Object {!$_.Enabled}).Count -eq 0
    
    if( $remoteDesktopConnectionDeniedValue -eq 0 -and $rdpNetworkLevelAuthenticationValue -eq 0 -and $firewallRulesEnabled -eq $true)
    {
        Write-Information "Remote Desktop Connection is enabled." -InformationAction Continue
        return $true
    }
    else
    {
        Write-Information "Remote Desktop Connection is disabled." -InformationAction Continue
        return $false
    }
}
elseif ($ExecutionMode -eq "Configure") { 
    Write-Information "Enable Remote Desktop Connection." -InformationAction Continue
    Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections" -value 0 -ErrorAction Continue
    
    Write-Information "Diable Network Level Authentication." -InformationAction Continue
    (Get-WmiObject -class "Win32_TSGeneralSetting" -Namespace root\cimv2\terminalservices -Filter "TerminalName='RDP-tcp'"  -ErrorAction Continue).SetUserAuthenticationRequired(0)
    
    Write-Information "Enable RDP Firewall Rules." -InformationAction Continue
    Enable-NetFirewallRule -DisplayGroup "Remote Desktop"  -ErrorAction Continue
}

Alternative: EnsureDisabledRemoteDesktopConnections PowerShell Script

You can copy/paste this script directly, or modify it as needed.

NOTE:

Use this script if you would like to ensure remote desktop connections are disabled on a server

<# 
.SYNOPSIS
Ensures Remote Desktop Connections are not allowed on the server

.AHCONFIGKEY
Disable Remote Desktop Connection

.AHCONFIGTYPE
Windows Settings

.AHEXECMODE 
$ExecutionMode
#>

if ($ExecutionMode -eq "Collect") {
    $remoteDesktopConnectionDeniedValue = (Get-ItemPropertyValue -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections")
    
    $firewallRulesEnabled = (Get-NetFirewallRule -DisplayGroup "Remote Desktop" | Where-Object {!$_.Enabled}).Count -eq 0
    
    if( $remoteDesktopConnectionDeniedValue -eq 0 -or $firewallRulesEnabled -eq $true)
    {
        Write-Information "Remote Desktop Connection is enabled." -InformationAction Continue
        return $false
    }
    else
    {
        Write-Information "Remote Desktop Connection is disabled." -InformationAction Continue
        return $true
    }
}
elseif ($ExecutionMode -eq "Configure") { 
    Write-Information "Disable Remote Desktop Connection." -InformationAction Continue
    Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections" -value 1 -ErrorAction Continue
    
    Write-Information "Disable RDP Firewall Rules." -InformationAction Continue
    Disable-NetFirewallRule -DisplayGroup "Remote Desktop"  -ErrorAction Continue
}

Was this article helpful?