Import sessions - folders and sub folders

Import sessions - folders and sub folders

avatar

Is it possible to import sessions in folders? in one go, I have 455 folders for individual sites, with 1-50 server rdp sessions in each and would dearly like to import them all in one go.
I have started importing what I need folder by folder but is there an easier way?
ie, 1 folder, with 455 sub folders, no folders below this level.
I need to retain the folder groupings.
any thoughts?

All Comments (5)

avatar

You are importing session from which application? RDM to RDM?

David Hervieux

avatar

importing rdp sessions, saved in to a folder structure.
eg
company1,
session1
session2

Company2
Session1
Session2

avatar

The problem is that the folder structure is not found in the rdp file. This will be difficult to do. I have entered a feature request but I can't give a timeline.

David Hervieux

avatar

I just hope it won't take more than 2 months.

avatar

I succeeded, by using a cmd to dump all the recersive rdp files to a text file:
FOR /F "tokens=*" %%G IN ('dir *.rdp /s /b') DO (
echo ##%%G >> temp.txt
type "%%G" >> temp.txt
)


a quick reformat with word, import into a spreadsheet and use some formulas to extract the domain, user, host etc and save as csv
end result, that in less than an hour I have imported 1935 new entries to my sql database! and im a very happy man, all complete with groupings and folder structure!