public void Run(String[] args) { Log.InfoFormat("Received remote Run command: [{0}]", String.Join(" ", args)); CommandLineOptions cmd = new CommandLineOptions(args); SessionDataStartInfo ssi = cmd.ToSessionStartInfo(); SuperPuTTY.OpenSession(ssi); }
public static void Initialize(string[] args) { Log.InfoFormat( "Initializing. Version={0}, UserSettings={1}, SettingsFolder={2}", Version, Settings.SettingsFilePath, Settings.SettingsFolder); /* no longer needed b/c of portable settings! // handle settings upgrade string version = Assembly.GetExecutingAssembly().GetName().Version.ToString(); if (Settings.ApplicationVersion != version) { Log.InfoFormat("Upgrading Settings to {0}", version); Settings.Upgrade(); Settings.ApplicationVersion = version; Settings.Save(); } */ if (!SuperPuTTY.IsFirstRun) { // parse command line args CommandLine = new CommandLineOptions(args); // display help if --help specified if (CommandLine.Help) { if (DialogResult.Cancel == MessageBox.Show(CommandLineOptions.Usage(), "SuperPutty CLI Help", MessageBoxButtons.OKCancel)) { Environment.Exit(0); } } // load data LoadLayouts(); LoadSessions(); Images = LoadImageList("default"); // determine starting layout, if any. CLI has priority if (CommandLine.IsValid) { if (CommandLine.Layout != null) { StartingLayout = FindLayout(CommandLine.Layout); if (StartingLayout != null) { Log.InfoFormat("Starting with layout from command line, {0}", CommandLine.Layout); } } else { // ad-hoc session specified SessionDataStartInfo sessionStartInfo = CommandLine.ToSessionStartInfo(); if (sessionStartInfo != null) { StartingSession = sessionStartInfo; Log.InfoFormat("Starting adhoc Session from command line, {0}", StartingSession.Session.SessionId); } } } // if nothing specified, then try the default layout if (StartingLayout == null && StartingSession == null) { StartingLayout = FindLayout(Settings.DefaultLayoutName); if (StartingLayout != null) { Log.InfoFormat("Starting with default layout, {0}", Settings.DefaultLayoutName); } } } // Register IpcChanncel for single instance support SingleInstanceHelper.RegisterRemotingService(); Log.Info("Initialized"); }
public static void Initialize(string[] args) { IsScpEnabled = File.Exists(SuperPuTTY.Settings.PscpExe); IsFilezillaEnabled = File.Exists(SuperPuTTY.Settings.FileZillaExe); IsWinSCPEnabled = File.Exists(SuperPuTTY.Settings.WinSCPExe); SessionsFileName = Path.Combine(Settings.SettingsFolder, "Sessions.XML"); Log.InfoFormat( "Initializing. Version={0}, UserSettings={1}, SettingsFolder={2}", Version, Settings.SettingsFilePath, Settings.SettingsFolder); Images = LoadImageList("default"); if (!SuperPuTTY.IsFirstRun) { // parse command line args CommandLine = new CommandLineOptions(args); // display help if --help specified if (CommandLine.Help) { if (DialogResult.Cancel == MessageBox.Show(CommandLineOptions.Usage(), "SuperPutty CLI Help", MessageBoxButtons.OKCancel)) { Environment.Exit(0); } } // load data LoadLayouts(); LoadSessions(); // determine starting layout, if any. CLI has priority if (CommandLine.IsValid) { if (CommandLine.Layout != null) { StartingLayout = FindLayout(CommandLine.Layout); if (StartingLayout != null) { Log.InfoFormat("Starting with layout from command line, {0}", CommandLine.Layout); } } else { // ad-hoc session specified SessionDataStartInfo sessionStartInfo = CommandLine.ToSessionStartInfo(); if (sessionStartInfo != null) { StartingSession = sessionStartInfo; Log.InfoFormat("Starting adhoc Session from command line, {0}", StartingSession.Session.SessionId); } } } // if nothing specified, then try the default layout if (StartingLayout == null && StartingSession == null) { StartingLayout = FindLayout(Settings.DefaultLayoutName); if (StartingLayout != null) { Log.InfoFormat("Starting with default layout, {0}", Settings.DefaultLayoutName); } } } // Register IpcChanncel for single instance support SingleInstanceHelper.RegisterRemotingService(); WindowEvents = new GlobalWindowEvents(); Log.Info("Initialized"); }