Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable MobaXterm file browser sidebar from opening automatically

This seems like a simple question but I can't find an answer. I use MobaXterm free edition to SSH into my machines. Every time I SSH into a machine the side bar automatically expands with the paths on the remote machine. I don't need this side bar and every time I have to collapse it. Is there a way to permanently disable the side bar or at least not automatically expend it when SSH-ing?

Here is a picture (linked) of the expaned sidebar:

mobaxterm_sidebar

like image 870
BowerTin Avatar asked Mar 29 '17 15:03

BowerTin


People also ask

How do I open a file explorer in MobaXterm?

MobaXterm. Clicking the "Scp" tab (located on the left-hand side of the MobaXTerm window) opens up a graphical user interface that can be used for basic file operations. You can drag and drop files in the file explorer or use the up and down arrows on the toolbar to upload and download files.


2 Answers

Under settings there are these 2 settings that control this that I typically turn off.

enter image description here

like image 115
partyd Avatar answered Sep 21 '22 20:09

partyd


While instructing users through the GUI settings is an option it is often desirable to implement the application with an already usable default configuration. These settings are stored in the MobaXterm.ini file.

Hints for locating this file can be found here: Mobaxterm configuration settings

I'm using windows and mine was in my Documents/Mobaxterm folder

Here are the configuration settings I use to remove the sidebar and set the app to compact mode:

[WindowPos_xxxxxxxxxxxxx] ... CompactMode=0 SidebarVisible=0 ...  [SSH] ... AutoStartSSHGUI=0 EnableSFTP=0 ... 
like image 32
Phil Avatar answered Sep 22 '22 20:09

Phil