Skip to main content
All Posts By

UX Team

Session Converter Update

By Tips & Tricks No Comments

We’ve made an update to our Session Converter tool. You can now select the desired directory into which you want to save your session. You can find the Session Converter tool on our tech support page here: https://netsarang.atlassian.net/wiki/spaces/ENSUP/pages/174948603/Putty+SecureCRT+8+ZOC+7+Session+Converter. The tool supports putty, SecureCRT 8, and ZOC 7 session files and extracts the session name, host, port, and user name to be converted to an Xshell session file. The password is not extracted. Below, we’ll briefly go over how to utilize…

Read More

Accessing a Remote Server via Public-Key Authentication

By Tips & Tricks No Comments

With Xshell, you can easily generate a public key and register it to a server. In another article, we went over how to generate a public/private key pair. From the User Key manager, access the key properties and navigate to the Public Key tab. Copy the entire public key to your clipboard and we will register it to our server. First, we’ll need to ssh to the server using password authentication. From there, we’ll need to edit the sshd_config file. (Default…

Read More

Script Function for Importing Current Session Name

By Features No Comments

With the latest release of Xmanager Enterprise and Xshell we’ve included a new script function, SessionName, for importing the current session name. This feature was requested by one of our Xshell users in our forums. Utilization is simple by using the following function: xsh.Session.SessionName Let’s look at the actual code: Sub Main() xsh.Dialog.Msgbox(xsh.Session.SessionName) End Sub The UX team here at NetSarang considered how users can effectively use the newly added SessionName function in combination with existing features. They concluded that you…

Read More

Git Repository Management with Gitlab

By Developer's Corner No Comments

What is Gitlab? Gitlab is respository manager developed by Gitlab, Inc. Gitlab provides easy access control, code reviews, issue tracking, activity feeds, wiki, and continuous integration. Tens of thousands of organizations currently use Gitlab to manage their repositories. Compared to other SaaS (github, bitbucket), Gitlab allows you to host the repos on your own servers. This is crucial when you need to manage git while access to an external network environment is restricted. Most importantly, Gitlab becomes a means of implementing a…

Read More