Online Detection "Port Scan" is missing in Batch Edit, so i implemented this into my Powershell script
Example Script to change all Sessions:$RDMSnapin = Get-PSSnapin -Name *Remote.Desktop* -Registered | sort version -Descending | select -First 1Add-PSSnapin $RDMSnapin$RDMSessions = Get-RDM-Sessionforeach ($Session in $RDMSession) { Set-RDM-Property -NoRefresh -ID $Session.id -Property "PingConnectionMethod" -Value 'PortScan'}
Thank you Peter
We havent given this in a while, but here you go, you get the trophy ;)
Maurice
Excellent!
David Hervieux
Hello Maurice,
What an honor! :froot:
Thank you very much! :applause:
By the way, batch edit port scan is scheduled to be in the next minor release
David Hervieux
I almost expected this ;) But the batch edit is not my primary focus, it's just convenient for specific server or when i need something quickly.
The Code fits perfectly into my script to create new sessions anyway:
I create my sessions by correlating my Server-CSV-List with the list of RDM Session and create the missing sessions with the needed dynamic parameters (and Server Metadata) and this setting needs to be there anyway.