Get-RDPStatusWMI.ps1


Description

Get-RDPStatusWMI performs the same Remote Desktop status check as the CIM variant but uses the WMI provider for environments constrained to DCOM. For each name in -ComputerName, the script reads the AllowTSConnections property and prints whether RDP is enabled.

Usage examples

Get-RDPStatusWMI -ComputerName 'legacy01'
$servers | Get-RDPStatusWMI

Combine this diagnostic with the enable/disable functions to keep legacy systems aligned with your RDP baseline.


Script

function Get-RDPStatusWMI {
    # Do you care to check if it is currently enabled or disabled before acting? Use the below code.
    [CmdletBinding()]
    param (
        [Parameter()]
        [string[]]
        $ComputerName
    )
    foreach ($Computer in $ComputerName) {
        $tsobj = Get-WmiObject -Class Win32_TerminalServiceSetting -Namespace Root\CimV2\TerminalServices -ComputerName $Computer
        if ($tsobj.AllowTSConnections -eq '1') {
            Write-Output "RDP Enabled"
        }
        if ($tsobj.AllowTSConnections -eq '0') {
            Write-Output "RDP Disabled"
        }
    }
}

Back to Top


Download

Please feel free to copy parts of the script or if you would like to download the entire script, simple click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.


Report Issues

You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.

Issue


Back to Top