Skip to main content

Exporting/Saving Putty/SecureCRT/SecureFX sessions on Windows!!

This is my first stint with blogging and I thought why not just start with sharing some useful information/tricks  that can save you some time.

To begin with , here are couple of tips that could save you some time.

Actually, I had once this problem where I have to take backup and move my work data to a new laptop and as we normally do , I also put my data on some external drive and copied it to the new box. During all this exercise I realized that by this I can only back up the data, what about the work I am doing..my configurations and installations...? What the heck...I need to spend lot of time to redo all that...crap.

I was using Putty, SecureCRT and SecureFX to log on to client side boxes and to work upon. And all three had at least 30 saved sessions having IP/user/pwd information, reconfiguring those sessions would be a daunting tasks. I did some research "well by that I meant googling also..:)" and here is how a little information can help you..

If you are using Putty on windows...
Putty actually does not have any config or ini file , it writes all the user created sessions in windows registry. You can find the sessions saved in putty at HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions location. That's it...we are almost done. Just export this key and save it to some location or external drive if you plan to move to some different windows box. Last thing you need to do is import this key to any other windows system where putty is running.

If you are using SecureFx/SecureCRT on Windows...
SecureCRT saves the user sessions information under windows user home directory. \AppData\Roaming\Van Dyke Technologies\SecureCRT\Config\sessions. You just need to copy the sessions folder and save it to some location. Just as a word of caution..., with Windows 7, Microsoft has changed the users home directory to C:\Users\. The same is c:\documents and settings\ in WindowsXP and prior versions.
I guess you know what is coming next..I need not to explain how to copy the sessions folder to the same location on any other windows box where you want to setup secureCRT/SecureFX and yes...you do not want to redo all the session creations..:)

Please leave you comments..how did you find it? and remember.. this is my first blog..:)

Comments

  1. It was quite informative.
    I couldn't find the Putty sessions in the registry, so I made all the 27 sessions by myself. The bottom line is that there is no way you can transfer your sessions from putty to SecureCRT. VanDyke is working on some method as I had some email exchanges with their support group as I am the prime for my company on this software and I need to know the A-Z of this software by heart.
    Also, I had confusion in finding the SecureCRt sessions, before realizing that I had modified the location of the sessions to a more appropriate and reachable destination as My Documents. I am in the testing phase of this software so I need regular access to the MD5 files and the session .ini files.
    The post, in all, was quite enthusiastic and informative.
    Way to go Nilesh!

    ReplyDelete
  2. Thanks for sharing this amazing post for more info plz visit SecureCRT & SecureFX 8.7.2 Crack

    ReplyDelete
  3. Such useful Post! I Love Reading Your Posts And Frequently i Visit Your Blog, So I am Sharing My Stuff Too You
    May Like This Also,
    SecureCRT and SecureFX 2020 License Key

    ReplyDelete
  4. Software Name: ChessBase Crack
    Download Link: https://cracks4you.com/chessbase-crack/

    ReplyDelete

Post a Comment

Popular posts from this blog

What is big data ? and what role Hadoop has to play?

In recent times we have been hearing , reading (in many blogs) quite often about cloud computing ,big data and HPC ie. high performance computing. Undoubtedly, these are the buzz words for this decade. If you have been in the industry for quite some time then you can recall last decade was web 2.0 decade. So what is big data? Is it a new framework or new data modelling technique or part of NO SQL movement? I have seen many times people relate big data to one of these or they are confused about it. Same is with HADOOP, it is thought as a NO SQL database framework. Big data is nothing but just huge amount of data which requires mining. Per wiki , Big Data is a term applied to data sets whose size is beyond the ability of commonly used software tools to capture, manage, and process the data within a tolerable elapsed time. Big data sizes are a constantly moving target currently ranging from a few dozen terabytes to many petabytes of data in a single data set.So big data is a hovering p

class.forName(String className) used in JDBC unfolded

During many interviews I have taken , I have observed even seasoned programmers find it difficult to explain the use of class.forname() method while making a JDBC connection object. In this post, I am just trying to explain this, Here is a simple JDBC code, import java.sql.*; public class JdbcConCode { public static void main(String args[]) { Connection con = null; String url = "jdbc:mysql://localhost:3306/nilesh"; String driver = "com.mysql.jdbc.Driver"; String user = "root"; String pass = "nilesh"; try { Class.forName(driver); con = DriverManager.getConnection(url, user, pass); System.out.println("Connection is created...."); //TODO //rest of the code goes here } catch (Exception e) { System.out.println(e); } } } Let's go through the code above, the url indicates the location of the database schema, here the database is nilesh . Then there is Driver which is the fully qualified JDBC driver class name.