When logged into a machine through VNC and I use the arrow keys it then disables the rest of my keyboard input until I reconnect.
Topic "12.4.12.0 VNC Issue" a message from Christopher Dashiells
Topic "Network scan on selected session" a message from Michel Vissers
When selecting an import > network scan on a selected session, it would be nice if the network scan would automatically only scan the host, and add any found services as subconnections to this host.
Topic "Select a specific subconnection as default action on a host session" a message from Michel Vissers
In a host session, you can select wether you want to choose a subconnection to launch or a template. I would also like to see the option to specifically select a subconnection as default action.
For example a web session would be the primary connection to a device and a ssh session for diagnostic purposes. Right now I have select a subconnection every time I doubleclick on the host session.
It would save a click and some frustration of having to select a subconnection every time if I could set the web session as default action.
Topic "RDP Resolution settings not effective" a message from Valerio Brandi
Hi there,
I'm trying to figure out why the resolution settings are not effective when I open the session (session is opened as an incorporated tab). Screenshot attached
What am I missing?
I'm using the latest free version of the Remote Desktop Manager.
Thanks in advance.
Topic "VMware synchronizer does not create session based on selected template" a message from Michel Vissers
Is it possible to create sessions based on the selected template instead of either RDP or VMware remote Console using the VMware Synchronizer?
I can select a template (a host session in my case) but the synchronizer just ignores it.
Or will it only use certain properties from the template (but not the connection type)?
Topic "Use (external) key agent for built-in SCP/SFTP sessions" a message from Gerrit Kieffer
Hi again,
sorry for picking up this "old" thread, but I think this relates:
Today I updated RDM free to Version 3.5 and was happy to find the new "Use SSH authentication agent" setting in the "Advanced" tab of the built-in SFTP entry. Unfortunately though, it is not saved. Every time I check the box, save the entry and reopen it, the box is unchecked again.
I'm not sure if this is a general issue or just a side effect of using a shared xml configuration with auto refresh in our team, but I wanted to let you know.
-Gerrit
Topic "Possibility to delete expired entries from Notification Panel" a message from Min Destens
Hi Michaël,
Thank you for the multi selection - it works perfect!
UPDATE: Found a possible bug: If the private vault is opened in the navigation pane, and the setting "Disable Notification" are selected for a entry that is only stored in the "All Connections" pane, these entries are now added to the private vault too - so there are now saved twice - in the private fault it is now saved with the option "Exclude Notifications, in the shared connection list the setting was not set..
One last question - I forgot to ask in the last post - is it possible to make the columns in the notification window adjustable? possibility to add the "Group" column for example..
Thanks!
Regards,
Min
Topic "cisco anyconnect on rdm 12.0.8.0" a message from Sebastiaan van Dijken
LS,
We have new windows 2016 rds servers with rdm 12.0.8.0 installed and i'm testing the jump manager with cisco anyconnect but it seems like that the connection is not setup it goes directly to the rdp and not start the anyconnect connection.
New rds windows 2016 server with rdm 12.0.8.0, VPNAddOn.dll 3.0.33.0
Jump host machine windows 10 with rdm 12.0.8.0, VPNAddOn.dll 3.0.33.0, anyconnect 3.1.11004
In our current environment rdm 11 and VPNAddOn.dll 3.0.23.0, anyconnect 3.1.11004 it al works fine
Topic "Resizing not working on Mac" a message from John Manning
I cannot get the working area resizing to work at all. I have tried default and working area, I just end up with the same issue - scroll bars. it isn't just scrolling a bit as if it couldn't work out the chrome parts of the UI, it is hugely out.
I am running on a Retina MacBook Pro connected to a 4K monitor. Seems to happen regardless of whether I am connected to the monitor or not.
Topic "PowerShell - Creating Telnet(Rebex) sessions" a message from tom_minerd
Hello,
I'm having issues creating a Telnet(Rebex) Putty session using PowerShell. This is what I'm using below to create the session:
$switchGroupName = "$stationGroupName\Switches"
$newSwitchSession = New-RDMSession -Group $switchGroupName -Host $serialIP -Name $sessionName -Type Putty
$newSwitchSession.ImageName = "SYS_CommandLine"
$newSwitchSession.Putty.Port = "$serialPort"
$newSwitchSession.Putty.ProtocolType = "Telnet"
$newSwitchSession.Putty.HistoryMaxLength ="5000"
Set-RDMSession $newSwitchSession
When it gets created, it sets it as an SSH(Rebex) session and not Telnet.
Does anyone have a recommendation for doing this?
Topic "PowerShell cmdlet to edit Group permissions" a message from tom_minerd
A new problem has come up regarding this:
I find that when adding more than one element to the ViewRoles option, it only adds the first item and leaves the rest out. For example:
# Create student accounts in RDM for the INSTRUCTOR DB data source.
$userData = $stationsCsv | Where-Object {$_.Type -eq 'JBVM' -and $_.Station -ne 'inst'}
$users = @()
foreach($userRow in $userData) {
$user = $($userRow.Username)
$station = $($userRow.Station)
$userName = "$dc1\$user"
$userList = $userName + "|u"
$rdmUser = New-RDMUser -Login $userName -IntegratedSecurity
Set-RDMUser -User $rdmUser
$users += $userList
}
$rdmUserList = [String]::Join(', ', $users)
$rdmUserList
The result of $rdmUserList:
U01\DNNH01ST01|u, U01\DNNH01ST02|u, U01\DNNH01ST03|u, U01\DNNH01ST04|u
Then I do this:
# Create main class group folder and add permissions.
$type = "Group"
$newClassGroup = New-RDMSession -Group $class -Name $class -Type $type
$newClassGroup.Security.RoleOverride = "Custom"
$newClassGroup.Security.ViewOverride = "Custom"
$newClassGroup.Security.ViewRoles = "$rdmUserList"
Set-RDMSession $newClassGroup
The result in RDM after a refresh is that the View permissions are only set to U01\DNNH01ST01 and the other users do not exist. If I get the information in Powershell, this is what I see:
PS Microsoft.PowerShell.Core\FileSystem::\\10.206.1.150\Training_Solutions\DNNH1> $newClassGroup.Security
IsEmpty : False
PasswordComplexityCustomMinimumLength : 0
PasswordComplexityCustomMinimumLowerCase : 0
PasswordComplexityCustomMinimumNumeric : 0
PasswordComplexityCustomMinimumSymbol : 0
PasswordComplexityCustomMinimumUpperCase : 0
PasswordComplexityId :
PasswordComplexityUsageOverride : Default
PasswordComplexityValidationOverride : Default
Permissions : {}
RoleOverride : Custom
ViewOverride : Custom
ViewRoles : {U01\DNNH01ST01|u, U01\DNNH01ST02|u, U01\DNNH01ST03|u, U01\DNNH01ST04|u}
Cid : 5a7ce5ad-e929-4e7a-a09a-e91eefd5cb61
Why is this not being applied to the folder properly?
Topic "SSH Port Forwards not working all of a sudden" a message from kelemvor
Just installed v 12.5.0.0... Same problem as with every version since 12.4.4.0. Still waiting for someone to reach out for a remote session or something to try to get to the bottom of this...
Topic "Firefox and Edge Extensions" a message from Gary Herbstman
So yes, the sonicwall site is similar to your link. When you configure certain things it will popup a new window. In the embeded mode RDM loses the linkage between windows and you cannot save changes. That is why external mode is needed.
FreePBX is a separate issue. RDM will not recognize fields to fill. Roboform works fine.
As for RDM not knowing the FF extension is installed, the file is not in the profiles folder. I have un-installed FF and the extensions and re-installed and still no go. For Firefox, it's "%APPDATA%\Mozilla\Firefox\Profiles\extensions\DWLFirefox@devolutions.net"
Topic "Importing web favorites?" a message from Michel Vissers
Is it me, or is there no import/synchronizer for importing web links? Favorites, bookmarks etc?
Topic "Chrome Extension 5.0" a message from Min Destens
Hello,
since version 5.0 from Chrome Extension the detection and the auto-fill in for some websites didn`t work anymore (with the previous version it works flawless)
I got this behaviour on this sites:
- https://twitter.com/
- https://www.reddit.com/
- https://disqus.com/profile/login/
Thanks!
Regards,
Min
Topic "It was like opening a box of coffee flavour chocolates at Christmas" a message from Paul Flint
I installed the latest release and excitedly opened the application.
I clicked a group entry in my navigation pane and waited for all sub folders to automatically expand..... but they didn't
'Ah I thought, it will be an options that needs enabling'.
Quick scan through options and interface but no, nothing.
Gutted
We have a group folder for each client, then subfolders for each site of that client, then subfolders for physicals, virtuals, devices.
I suggested many months back that it would be great (and save many mouse clicks) that when I click a Client, all the subfolders autoexpand.
Maybe next time?
Topic "Error 131084 on latest mac" a message from Hans Oele
Morning,
Been trying to connect to a W2K12 host without any luck.
I get the 131084 error. I can connect to other W2K12 hosts without any issues though
and I can connect with the normal RDP client. I've enabled logging.
See that attached file. Any one any idea?
Topic "My Inventory Report" a message from Min Destens
Hello,
in the Local Accounts section are also Domain Accounts listed instead of local accounts only. And the date in the Windows Hotfix section has a other (false) format as in the products section.
Thanks!
Regards,
Min
Topic "Local Administrator connection" a message from Vassilis
Hi,
paid Enterprise version of RDM 12.5.0.0
I want to create a credential for local administrator.
I create an entry with username administrator and password 123 and domain empty
but when i select this from the drop down menu and then open the connection i get the pop up of windows username and password
I tried to add the username with .\administrator but again same thing happens.
what am i missing ?
thank you,
Vassilis
Topic "Inventory Data connected to RDM Devices" a message from Jens-Peter Brand
Hello,
based on the new tool "My Inventory" within RDM I suggest the integration of JDISC (http://www.jdisc.com/en/products/jdisc-discovery-professional-edition-products.html) and/or i-doit (https://www.i-doit.com/en/products/it-documentation/).
JDISC scans the whole network for ip based device informations. A really great tool that saved us a lot of time! The data is then imported into the network documentation software i-doit. i-doit offers a web service based on JSON-RPC, so any third-party software may read and write object data. An action for any created device within RDM to open the inventory properties would be very helpful.
I would really love to get some feedback on this idea ... Jens-Peter