Online Detection - change all to Port Scan

Online Detection - change all to Port Scan

avatar

I implemented the feature to change Online Detection into Port scan into my Powershell script

Example Script to change all Sessions:
$RDMSnapin = Get-PSSnapin -Name *Remote.Desktop* -Registered | sort version -Descending | select -First 1
Add-PSSnapin $RDMSnapin
$RDMSessions = Get-RDM-Session
foreach ($Session in $RDMSession) {
Set-RDM-Property -NoRefresh -ID $Session.id -Property "PingConnectionMethod" -Value 'PortScan'
}
edited by Peter Cermak (POI) on 11/15/2013

All Comments (0)