Hey all,
I would like to find all RDS/Terminal Servers that are run in application mode. This is relevant for Microsoft licensing, since an installation on an application server does not require a license.
There is a WMI class containing this information and a query would look like this:
Get-WmiObject -Namespace "root\CIMV2\TerminalServices" -Class "Win32_TerminalServiceSetting" -ComputerName $name).TerminalServerMode
Return can be 0 or 1. 0 means only admin rds is enabled, 1 is application mode.
Is there already scanned data I can use to find this information?
Is there a way to add the WMI query to LanSweeper?
Thanks in advance!