diff --git a/CREDITS.TXT b/CREDITS.TXT
index 5a4f7baa7..548cba950 100644
--- a/CREDITS.TXT
+++ b/CREDITS.TXT
@@ -77,6 +77,10 @@ IP TextBox
Copyright © 2005 mawnkay
http://www.codeproject.com/Articles/11576/IP-TextBox
+PortableSettingsProvider
+Copyright © 2014 crdx
+https://github.com/crdx/PortableSettingsProvider
+
Included Components
===================
diff --git a/mRemoteV1/Config/Settings/Providers/AppSettingsProvider.cs b/mRemoteV1/Config/Settings/Providers/AppSettingsProvider.cs
deleted file mode 100644
index d066d0edb..000000000
--- a/mRemoteV1/Config/Settings/Providers/AppSettingsProvider.cs
+++ /dev/null
@@ -1,241 +0,0 @@
-#if false
-using System;
-using System.Collections.Specialized;
-using System.Configuration;
-using System.IO;
-using System.Windows.Forms;
-using System.Xml;
-
-
-namespace mRemoteNG.Config.Settings.Providers
-{
- public class AppSettingsProvider : SettingsProvider
- {
- const string SETTINGSROOT = "Settings"; //XML Root Node
-
- public override void Initialize(string name, NameValueCollection col)
- {
- if (Application.ProductName.Trim().Length > 0)
- {
- _applicationName = Application.ProductName;
- }
- else
- {
- _applicationName = Path.GetFileNameWithoutExtension(Application.ExecutablePath);
- }
-
- base.Initialize(ApplicationName, col);
-
- /*
- if (!File.Exists(GetDotSettingsFile()))
- {
- // do something smart.
- }
- */
- }
-
- private string _applicationName;
- public override string ApplicationName
- {
- get { return _applicationName; }
- set { }
- }
-
- public virtual string GetDotSettingsFile()
- {
- return Path.Combine(GetAppSettingsPath(), GetAppSettingsFilename());
- }
-
-
- public virtual string GetAppSettingsPath()
- {
- //Used to determine where to store the settings
- return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Application.ProductName);
- }
-
- public virtual string GetAppSettingsFilename()
- {
- //Used to determine the filename to store the settings
- return Application.ProductName + ".settings";
- }
-
- public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection propvals)
- {
- //Iterate through the settings to be stored
- //Only dirty settings are included in propvals, and only ones relevant to this provider
- foreach (SettingsPropertyValue propval in propvals)
- {
- SetValue(propval);
- }
-
- try
- {
- SettingsXml.Save(GetDotSettingsFile());
- }
- catch (Exception)
- {
- //Ignore if cant save, device been ejected
- }
- }
-
- public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection props)
- {
- //Create new collection of values
- var values = new SettingsPropertyValueCollection();
-
- //Iterate through the settings to be retrieved
- foreach (SettingsProperty setting in props)
- {
-
- var value = new SettingsPropertyValue(setting)
- {
- IsDirty = false,
- SerializedValue = GetValue(setting)
- };
- values.Add(value);
- }
- return values;
- }
-
- private XmlDocument _SettingsXml;
-
- private XmlDocument SettingsXml
- {
- get
- {
- //If we dont hold an xml document, try opening one.
- //If it doesnt exist then create a new one ready.
- if (_SettingsXml == null)
- {
- _SettingsXml = new XmlDocument();
-
- try
- {
- _SettingsXml.Load(GetDotSettingsFile());
- }
- catch (Exception)
- {
- //Create new document
- var dec = _SettingsXml.CreateXmlDeclaration("1.0", "utf-8", string.Empty);
- _SettingsXml.AppendChild(dec);
-
- var nodeRoot = _SettingsXml.CreateNode(XmlNodeType.Element, SETTINGSROOT, "");
- _SettingsXml.AppendChild(nodeRoot);
- }
- }
- return _SettingsXml;
- }
- }
-
- private string GetValue(SettingsProperty setting)
- {
- var ret = string.Empty;
-
- try
- {
- if (IsRoaming(setting))
- {
- ret = SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + setting.Name).InnerText;
- }
- else
- {
- ret = SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + Environment.MachineName + "/" + setting.Name).InnerText;
- }
- }
- catch (Exception)
- {
- ret = setting.DefaultValue?.ToString() ?? "";
- }
- return ret;
- }
-
- private void SetValue(SettingsPropertyValue propVal)
- {
- System.Xml.XmlElement MachineNode = default(System.Xml.XmlElement);
- System.Xml.XmlElement SettingNode = default(System.Xml.XmlElement);
-
- //Determine if the setting is roaming.
- //If roaming then the value is stored as an element under the root
- //Otherwise it is stored under a machine name node
- try
- {
- if (IsRoaming(propVal.Property))
- {
- SettingNode = (XmlElement) (SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + propVal.Name));
- }
- else
- {
- SettingNode = (XmlElement) (SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + (new Microsoft.VisualBasic.Devices.Computer()).Name + "/" + propVal.Name));
- }
- }
- catch (Exception)
- {
- SettingNode = null;
- }
-
- //Check to see if the node exists, if so then set its new value
- if (SettingNode != null)
- {
- if (propVal.SerializedValue != null)
- {
- SettingNode.InnerText = propVal.SerializedValue.ToString();
- }
- }
- else
- {
- if (IsRoaming(propVal.Property))
- {
- //Store the value as an element of the Settings Root Node
- SettingNode = SettingsXml.CreateElement(propVal.Name);
- if (propVal.SerializedValue != null)
- {
- SettingNode.InnerText = propVal.SerializedValue.ToString();
- }
- SettingsXml.SelectSingleNode(SETTINGSROOT).AppendChild(SettingNode);
- }
- else
- {
- //Its machine specific, store as an element of the machine name node,
- //creating a new machine name node if one doesnt exist.
- try
- {
- MachineNode = (XmlElement) (SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + (new Microsoft.VisualBasic.Devices.Computer()).Name));
- }
- catch (Exception)
- {
- MachineNode = SettingsXml.CreateElement((new Microsoft.VisualBasic.Devices.Computer()).Name);
- SettingsXml.SelectSingleNode(SETTINGSROOT).AppendChild(MachineNode);
- }
-
- if (MachineNode == null)
- {
- MachineNode = SettingsXml.CreateElement((new Microsoft.VisualBasic.Devices.Computer()).Name);
- SettingsXml.SelectSingleNode(SETTINGSROOT).AppendChild(MachineNode);
- }
-
- SettingNode = SettingsXml.CreateElement(propVal.Name);
- if (propVal.SerializedValue != null)
- {
- SettingNode.InnerText = propVal.SerializedValue.ToString();
- }
- MachineNode.AppendChild(SettingNode);
- }
- }
- }
-
- private bool IsRoaming(SettingsProperty prop)
- {
- //Determine if the setting is marked as Roaming
- //For Each d As DictionaryEntry In prop.Attributes
- // Dim a As Attribute = DirectCast(d.Value, Attribute)
- // If TypeOf a Is System.Configuration.SettingsManageabilityAttribute Then
- // Return True
- // End If
- //Next
- //Return False
-
- return true;
- }
- }
-}
-#endif
\ No newline at end of file
diff --git a/mRemoteV1/Config/Settings/Providers/ChooseProvider.cs b/mRemoteV1/Config/Settings/Providers/ChooseProvider.cs
index 0530f5b9d..5edbde037 100644
--- a/mRemoteV1/Config/Settings/Providers/ChooseProvider.cs
+++ b/mRemoteV1/Config/Settings/Providers/ChooseProvider.cs
@@ -1,12 +1,11 @@
-namespace mRemoteNG.Config.Settings.Providers
+using System.Configuration;
+
+namespace mRemoteNG.Config.Settings.Providers
{
-#if false
#if PORTABLE
public class ChooseProvider : PortableSettingsProvider
#else
- public class ChooseProvider : AppSettingsProvider
-#endif
- {
- }
+ public class ChooseProvider : LocalFileSettingsProvider
#endif
+ { }
}
\ No newline at end of file
diff --git a/mRemoteV1/Config/Settings/Providers/PortableSettingsProvider.cs b/mRemoteV1/Config/Settings/Providers/PortableSettingsProvider.cs
index 9221bda65..3e42acfe7 100644
--- a/mRemoteV1/Config/Settings/Providers/PortableSettingsProvider.cs
+++ b/mRemoteV1/Config/Settings/Providers/PortableSettingsProvider.cs
@@ -1,234 +1,245 @@
-#if false
+/// The MIT License (MIT)
+///
+/// Copyright(c) crdx
+///
+/// Permission is hereby granted, free of charge, to any person obtaining
+/// a copy of this software and associated documentation files (the
+/// "Software"), to deal in the Software without restriction, including
+/// without limitation the rights to use, copy, modify, merge, publish,
+/// distribute, sublicense, and/or sell copies of the Software, and to
+/// permit persons to whom the Software is furnished to do so, subject to
+/// the following conditions:
+///
+/// The above copyright notice and this permission notice shall be
+/// included in all copies or substantial portions of the Software.
+///
+/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+/// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+/// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+/// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+/// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+/// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+/// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+///
+/// https://raw.githubusercontent.com/crdx/PortableSettingsProvider
+///
+using System.Linq;
using System;
-using System.Collections.Specialized;
+using System.Collections;
+using System.Collections.Generic;
using System.Configuration;
-using System.IO;
using System.Windows.Forms;
+using System.Collections.Specialized;
using System.Xml;
-
+using System.IO;
namespace mRemoteNG.Config.Settings.Providers
{
- public class PortableSettingsProvider : SettingsProvider
- {
- const string SETTINGSROOT = "Settings"; //XML Root Node
+ public class PortableSettingsProvider : SettingsProvider, IApplicationSettingsProvider
+ {
+ private const string _rootNodeName = "settings";
+ private const string _localSettingsNodeName = "localSettings";
+ private const string _globalSettingsNodeName = "globalSettings";
+ private const string _className = "PortableSettingsProvider";
+ private XmlDocument _xmlDocument;
- public override void Initialize(string name, NameValueCollection col)
- {
- if (Application.ProductName.Trim().Length > 0)
+ private string _filePath
+ {
+ get
{
- _applicationName = Application.ProductName;
+ return Path.Combine(Path.GetDirectoryName(Application.ExecutablePath),
+ string.Format("{0}.settings", ApplicationName));
+ }
+ }
+
+ private XmlNode _localSettingsNode
+ {
+ get
+ {
+ XmlNode settingsNode = GetSettingsNode(_localSettingsNodeName);
+ XmlNode machineNode = settingsNode.SelectSingleNode(Environment.MachineName.ToLowerInvariant());
+
+ if (machineNode == null)
+ {
+ machineNode = _rootDocument.CreateElement(Environment.MachineName.ToLowerInvariant());
+ settingsNode.AppendChild(machineNode);
+ }
+
+ return machineNode;
+ }
+ }
+
+ private XmlNode _globalSettingsNode
+ {
+ get { return GetSettingsNode(_globalSettingsNodeName); }
+ }
+
+ private XmlNode _rootNode
+ {
+ get { return _rootDocument.SelectSingleNode(_rootNodeName); }
+ }
+
+ private XmlDocument _rootDocument
+ {
+ get
+ {
+ if (_xmlDocument == null)
+ {
+ try
+ {
+ _xmlDocument = new XmlDocument();
+ _xmlDocument.Load(_filePath);
+ }
+ catch (Exception)
+ {
+
+ }
+
+ if (_xmlDocument.SelectSingleNode(_rootNodeName) != null)
+ return _xmlDocument;
+
+ _xmlDocument = GetBlankXmlDocument();
+ }
+
+ return _xmlDocument;
}
- else
- {
- _applicationName = Path.GetFileNameWithoutExtension(Application.ExecutablePath);
- }
-
- base.Initialize(ApplicationName, col);
}
- private string _applicationName;
public override string ApplicationName
{
- get { return _applicationName; }
+ get { return Path.GetFileNameWithoutExtension(Application.ExecutablePath); }
set { }
}
- public virtual string GetDotSettingsFile()
+ public override string Name
{
- return Path.Combine(GetAppSettingsPath(), GetAppSettingsFilename());
+ get { return _className; }
}
- public virtual string GetAppSettingsPath()
- {
- //Used to determine where to store the settings
- System.IO.FileInfo fi = new System.IO.FileInfo(Application.ExecutablePath);
- return fi.DirectoryName;
- }
-
- public virtual string GetAppSettingsFilename()
- {
- //Used to determine the filename to store the settings
- return "portable.settings.";
- }
-
- public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection propvals)
- {
- //Iterate through the settings to be stored
- //Only dirty settings are included in propvals, and only ones relevant to this provider
- foreach (SettingsPropertyValue propval in propvals)
- {
- SetValue(propval);
- }
-
- try
- {
- SettingsXml.Save(GetDotSettingsFile());
- }
- catch (Exception)
- {
- //Ignore if cant save, device been ejected
- }
- }
-
- public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection props)
- {
- //Create new collection of values
- var values = new SettingsPropertyValueCollection();
-
- //Iterate through the settings to be retrieved
- foreach (SettingsProperty setting in props)
- {
+ public override void Initialize(string name, NameValueCollection config)
+ {
+ base.Initialize(Name, config);
+ }
- var value = new SettingsPropertyValue(setting)
- {
- IsDirty = false,
- SerializedValue = GetValue(setting)
- };
- values.Add(value);
- }
- return values;
- }
-
- private XmlDocument _SettingsXml;
-
- private XmlDocument SettingsXml
- {
- get
- {
- //If we dont hold an xml document, try opening one.
- //If it doesnt exist then create a new one ready.
- if (_SettingsXml == null)
- {
- _SettingsXml = new XmlDocument();
-
- try
- {
- _SettingsXml.Load(GetDotSettingsFile());
- }
- catch (Exception)
- {
- //Create new document
- var dec = _SettingsXml.CreateXmlDeclaration("1.0", "utf-8", string.Empty);
- _SettingsXml.AppendChild(dec);
+ public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection)
+ {
+ foreach (SettingsPropertyValue propertyValue in collection)
+ SetValue(propertyValue);
- var nodeRoot = _SettingsXml.CreateNode(XmlNodeType.Element, SETTINGSROOT, "");
- _SettingsXml.AppendChild(nodeRoot);
- }
- }
- return _SettingsXml;
- }
- }
-
- private string GetValue(SettingsProperty setting)
- {
- var ret = string.Empty;
-
- try
- {
- if (IsRoaming(setting))
- {
- ret = SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + setting.Name).InnerText;
- }
- else
- {
- ret = SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + Environment.MachineName + "/" + setting.Name).InnerText;
- }
- }
- catch (Exception)
- {
- ret = setting.DefaultValue?.ToString() ?? "";
- }
- return ret;
- }
-
- private void SetValue(SettingsPropertyValue propVal)
- {
- System.Xml.XmlElement MachineNode = default(System.Xml.XmlElement);
- System.Xml.XmlElement SettingNode = default(System.Xml.XmlElement);
-
- //Determine if the setting is roaming.
- //If roaming then the value is stored as an element under the root
- //Otherwise it is stored under a machine name node
- try
- {
- if (IsRoaming(propVal.Property))
- {
- SettingNode = (XmlElement) (SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + propVal.Name));
- }
- else
- {
- SettingNode = (XmlElement) (SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + (new Microsoft.VisualBasic.Devices.Computer()).Name + "/" + propVal.Name));
- }
- }
- catch (Exception)
- {
- SettingNode = null;
- }
-
- //Check to see if the node exists, if so then set its new value
- if (SettingNode != null)
- {
- if (propVal.SerializedValue != null)
- {
- SettingNode.InnerText = propVal.SerializedValue.ToString();
- }
- }
- else
- {
- if (IsRoaming(propVal.Property))
- {
- //Store the value as an element of the Settings Root Node
- SettingNode = SettingsXml.CreateElement(propVal.Name);
- if (propVal.SerializedValue != null)
- {
- SettingNode.InnerText = propVal.SerializedValue.ToString();
- }
- SettingsXml.SelectSingleNode(SETTINGSROOT).AppendChild(SettingNode);
- }
- else
- {
- //Its machine specific, store as an element of the machine name node,
- //creating a new machine name node if one doesnt exist.
- try
- {
- MachineNode = (XmlElement) (SettingsXml.SelectSingleNode(SETTINGSROOT + "/" + (new Microsoft.VisualBasic.Devices.Computer()).Name));
- }
- catch (Exception)
- {
- MachineNode = SettingsXml.CreateElement((new Microsoft.VisualBasic.Devices.Computer()).Name);
- SettingsXml.SelectSingleNode(SETTINGSROOT).AppendChild(MachineNode);
- }
-
- if (MachineNode == null)
- {
- MachineNode = SettingsXml.CreateElement((new Microsoft.VisualBasic.Devices.Computer()).Name);
- SettingsXml.SelectSingleNode(SETTINGSROOT).AppendChild(MachineNode);
- }
-
- SettingNode = SettingsXml.CreateElement(propVal.Name);
- if (propVal.SerializedValue != null)
- {
- SettingNode.InnerText = propVal.SerializedValue.ToString();
- }
- MachineNode.AppendChild(SettingNode);
- }
- }
- }
-
- private bool IsRoaming(SettingsProperty prop)
- {
- //Determine if the setting is marked as Roaming
- //For Each d As DictionaryEntry In prop.Attributes
- // Dim a As Attribute = DirectCast(d.Value, Attribute)
- // If TypeOf a Is System.Configuration.SettingsManageabilityAttribute Then
- // Return True
- // End If
- //Next
- //Return False
-
- return true;
- }
- }
-}
-#endif
\ No newline at end of file
+ try
+ {
+ _rootDocument.Save(_filePath);
+ }
+ catch (Exception)
+ {
+ /*
+ * If this is a portable application and the device has been
+ * removed then this will fail, so don't do anything. It's
+ * probably better for the application to stop saving settings
+ * rather than just crashing outright. Probably.
+ */
+ }
+ }
+
+ public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection)
+ {
+ SettingsPropertyValueCollection values = new SettingsPropertyValueCollection();
+
+ foreach (SettingsProperty property in collection)
+ {
+ values.Add(new SettingsPropertyValue(property)
+ {
+ SerializedValue = GetValue(property)
+ });
+ }
+
+ return values;
+ }
+
+ private void SetValue(SettingsPropertyValue propertyValue)
+ {
+ XmlNode targetNode = IsGlobal(propertyValue.Property)
+ ? _globalSettingsNode
+ : _localSettingsNode;
+
+ XmlNode settingNode = targetNode.SelectSingleNode(string.Format("setting[@name='{0}']", propertyValue.Name));
+
+ if (settingNode != null)
+ settingNode.InnerText = propertyValue.SerializedValue.ToString();
+ else
+ {
+ settingNode = _rootDocument.CreateElement("setting");
+
+ XmlAttribute nameAttribute = _rootDocument.CreateAttribute("name");
+ nameAttribute.Value = propertyValue.Name;
+
+ settingNode.Attributes.Append(nameAttribute);
+ settingNode.InnerText = propertyValue.SerializedValue.ToString();
+
+ targetNode.AppendChild(settingNode);
+ }
+ }
+
+ private string GetValue(SettingsProperty property)
+ {
+ XmlNode targetNode = IsGlobal(property) ? _globalSettingsNode : _localSettingsNode;
+ XmlNode settingNode = targetNode.SelectSingleNode(string.Format("setting[@name='{0}']", property.Name));
+
+ if (settingNode == null)
+ return property.DefaultValue != null ? property.DefaultValue.ToString() : string.Empty;
+
+ return settingNode.InnerText;
+ }
+
+ private bool IsGlobal(SettingsProperty property)
+ {
+ foreach (DictionaryEntry attribute in property.Attributes)
+ {
+ if ((Attribute)attribute.Value is SettingsManageabilityAttribute)
+ return true;
+ }
+
+ return false;
+ }
+
+ private XmlNode GetSettingsNode(string name)
+ {
+ XmlNode settingsNode = _rootNode.SelectSingleNode(name);
+
+ if (settingsNode == null)
+ {
+ settingsNode = _rootDocument.CreateElement(name);
+ _rootNode.AppendChild(settingsNode);
+ }
+
+ return settingsNode;
+ }
+
+ public XmlDocument GetBlankXmlDocument()
+ {
+ XmlDocument blankXmlDocument = new XmlDocument();
+ blankXmlDocument.AppendChild(blankXmlDocument.CreateXmlDeclaration("1.0", "utf-8", string.Empty));
+ blankXmlDocument.AppendChild(blankXmlDocument.CreateElement(_rootNodeName));
+
+ return blankXmlDocument;
+ }
+
+ public void Reset(SettingsContext context)
+ {
+ _localSettingsNode.RemoveAll();
+ _globalSettingsNode.RemoveAll();
+
+ _xmlDocument.Save(_filePath);
+ }
+
+ public SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property)
+ {
+ // do nothing
+ return new SettingsPropertyValue(property);
+ }
+
+ public void Upgrade(SettingsContext context, SettingsPropertyCollection properties)
+ {
+ }
+ }
+}
\ No newline at end of file
diff --git a/mRemoteV1/Properties/Settings.Designer.cs b/mRemoteV1/Properties/Settings.Designer.cs
index 95b346778..a61f63c08 100644
--- a/mRemoteV1/Properties/Settings.Designer.cs
+++ b/mRemoteV1/Properties/Settings.Designer.cs
@@ -1,2558 +1,2558 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace mRemoteNG {
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default {
- get {
- return defaultInstance;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("0, 0")]
- public global::System.Drawing.Point MainFormLocation {
- get {
- return ((global::System.Drawing.Point)(this["MainFormLocation"]));
- }
- set {
- this["MainFormLocation"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("0, 0")]
- public global::System.Drawing.Size MainFormSize {
- get {
- return ((global::System.Drawing.Size)(this["MainFormSize"]));
- }
- set {
- this["MainFormSize"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Normal")]
- public global::System.Windows.Forms.FormWindowState MainFormState {
- get {
- return ((global::System.Windows.Forms.FormWindowState)(this["MainFormState"]));
- }
- set {
- this["MainFormState"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool MainFormKiosk {
- get {
- return ((bool)(this["MainFormKiosk"]));
- }
- set {
- this["MainFormKiosk"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool DoUpgrade {
- get {
- return ((bool)(this["DoUpgrade"]));
- }
- set {
- this["DoUpgrade"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string CustomPuttyPath {
- get {
- return ((string)(this["CustomPuttyPath"]));
- }
- set {
- this["CustomPuttyPath"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool SwitchToMCOnInformation {
- get {
- return ((bool)(this["SwitchToMCOnInformation"]));
- }
- set {
- this["SwitchToMCOnInformation"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool SwitchToMCOnWarning {
- get {
- return ((bool)(this["SwitchToMCOnWarning"]));
- }
- set {
- this["SwitchToMCOnWarning"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool SwitchToMCOnError {
- get {
- return ((bool)(this["SwitchToMCOnError"]));
- }
- set {
- this["SwitchToMCOnError"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool AutomaticallyGetSessionInfo {
- get {
- return ((bool)(this["AutomaticallyGetSessionInfo"]));
- }
- set {
- this["AutomaticallyGetSessionInfo"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool LoadConsFromCustomLocation {
- get {
- return ((bool)(this["LoadConsFromCustomLocation"]));
- }
- set {
- this["LoadConsFromCustomLocation"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string CustomConsPath {
- get {
- return ((string)(this["CustomConsPath"]));
- }
- set {
- this["CustomConsPath"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool SaveConsOnExit {
- get {
- return ((bool)(this["SaveConsOnExit"]));
- }
- set {
- this["SaveConsOnExit"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool CheckForUpdatesOnStartup {
- get {
- return ((bool)(this["CheckForUpdatesOnStartup"]));
- }
- set {
- this["CheckForUpdatesOnStartup"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowDescriptionTooltipsInTree {
- get {
- return ((bool)(this["ShowDescriptionTooltipsInTree"]));
- }
- set {
- this["ShowDescriptionTooltipsInTree"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowSystemTrayIcon {
- get {
- return ((bool)(this["ShowSystemTrayIcon"]));
- }
- set {
- this["ShowSystemTrayIcon"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool OpenTabsRightOfSelected {
- get {
- return ((bool)(this["OpenTabsRightOfSelected"]));
- }
- set {
- this["OpenTabsRightOfSelected"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowLogonInfoOnTabs {
- get {
- return ((bool)(this["ShowLogonInfoOnTabs"]));
- }
- set {
- this["ShowLogonInfoOnTabs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool SingleClickOnConnectionOpensIt {
- get {
- return ((bool)(this["SingleClickOnConnectionOpensIt"]));
- }
- set {
- this["SingleClickOnConnectionOpensIt"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("noinfo")]
- public string EmptyCredentials {
- get {
- return ((string)(this["EmptyCredentials"]));
- }
- set {
- this["EmptyCredentials"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string DefaultUsername {
- get {
- return ((string)(this["DefaultUsername"]));
- }
- set {
- this["DefaultUsername"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string DefaultPassword {
- get {
- return ((string)(this["DefaultPassword"]));
- }
- set {
- this["DefaultPassword"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string DefaultDomain {
- get {
- return ((string)(this["DefaultDomain"]));
- }
- set {
- this["DefaultDomain"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool UseCustomPuttyPath {
- get {
- return ((bool)(this["UseCustomPuttyPath"]));
- }
- set {
- this["UseCustomPuttyPath"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool FirstStart {
- get {
- return ((bool)(this["FirstStart"]));
- }
- set {
- this["FirstStart"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowProtocolOnTabs {
- get {
- return ((bool)(this["ShowProtocolOnTabs"]));
- }
- set {
- this["ShowProtocolOnTabs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ResetPanels {
- get {
- return ((bool)(this["ResetPanels"]));
- }
- set {
- this["ResetPanels"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool UpdateUseProxy {
- get {
- return ((bool)(this["UpdateUseProxy"]));
- }
- set {
- this["UpdateUseProxy"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string UpdateProxyAddress {
- get {
- return ((string)(this["UpdateProxyAddress"]));
- }
- set {
- this["UpdateProxyAddress"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("80")]
- public int UpdateProxyPort {
- get {
- return ((int)(this["UpdateProxyPort"]));
- }
- set {
- this["UpdateProxyPort"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool UpdateProxyUseAuthentication {
- get {
- return ((bool)(this["UpdateProxyUseAuthentication"]));
- }
- set {
- this["UpdateProxyUseAuthentication"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string UpdateProxyAuthUser {
- get {
- return ((string)(this["UpdateProxyAuthUser"]));
- }
- set {
- this["UpdateProxyAuthUser"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string UpdateProxyAuthPass {
- get {
- return ((string)(this["UpdateProxyAuthPass"]));
- }
- set {
- this["UpdateProxyAuthPass"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultDescription {
- get {
- return ((string)(this["ConDefaultDescription"]));
- }
- set {
- this["ConDefaultDescription"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("RDP")]
- public string ConDefaultProtocol {
- get {
- return ((string)(this["ConDefaultProtocol"]));
- }
- set {
- this["ConDefaultProtocol"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Default Settings")]
- public string ConDefaultPuttySession {
- get {
- return ((string)(this["ConDefaultPuttySession"]));
- }
- set {
- this["ConDefaultPuttySession"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultUseConsoleSession {
- get {
- return ((bool)(this["ConDefaultUseConsoleSession"]));
- }
- set {
- this["ConDefaultUseConsoleSession"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("FitToWindow")]
- public string ConDefaultResolution {
- get {
- return ((string)(this["ConDefaultResolution"]));
- }
- set {
- this["ConDefaultResolution"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Colors16Bit")]
- public string ConDefaultColors {
- get {
- return ((string)(this["ConDefaultColors"]));
- }
- set {
- this["ConDefaultColors"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultCacheBitmaps {
- get {
- return ((bool)(this["ConDefaultCacheBitmaps"]));
- }
- set {
- this["ConDefaultCacheBitmaps"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultDisplayWallpaper {
- get {
- return ((bool)(this["ConDefaultDisplayWallpaper"]));
- }
- set {
- this["ConDefaultDisplayWallpaper"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultDisplayThemes {
- get {
- return ((bool)(this["ConDefaultDisplayThemes"]));
- }
- set {
- this["ConDefaultDisplayThemes"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultRedirectKeys {
- get {
- return ((bool)(this["ConDefaultRedirectKeys"]));
- }
- set {
- this["ConDefaultRedirectKeys"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultRedirectDiskDrives {
- get {
- return ((bool)(this["ConDefaultRedirectDiskDrives"]));
- }
- set {
- this["ConDefaultRedirectDiskDrives"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultRedirectPrinters {
- get {
- return ((bool)(this["ConDefaultRedirectPrinters"]));
- }
- set {
- this["ConDefaultRedirectPrinters"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultRedirectPorts {
- get {
- return ((bool)(this["ConDefaultRedirectPorts"]));
- }
- set {
- this["ConDefaultRedirectPorts"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultRedirectSmartCards {
- get {
- return ((bool)(this["ConDefaultRedirectSmartCards"]));
- }
- set {
- this["ConDefaultRedirectSmartCards"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("DoNotPlay")]
- public string ConDefaultRedirectSound {
- get {
- return ((string)(this["ConDefaultRedirectSound"]));
- }
- set {
- this["ConDefaultRedirectSound"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("2")]
- public int MaxPuttyWaitTime {
- get {
- return ((int)(this["MaxPuttyWaitTime"]));
- }
- set {
- this["MaxPuttyWaitTime"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool SingleInstance {
- get {
- return ((bool)(this["SingleInstance"]));
- }
- set {
- this["SingleInstance"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool OpenConsFromLastSession {
- get {
- return ((bool)(this["OpenConsFromLastSession"]));
- }
- set {
- this["OpenConsFromLastSession"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool NoReconnect {
- get {
- return ((bool)(this["NoReconnect"]));
- }
- set {
- this["NoReconnect"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("0")]
- public int AutoSaveEveryMinutes {
- get {
- return ((int)(this["AutoSaveEveryMinutes"]));
- }
- set {
- this["AutoSaveEveryMinutes"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ExtAppsTBVisible {
- get {
- return ((bool)(this["ExtAppsTBVisible"]));
- }
- set {
- this["ExtAppsTBVisible"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool ExtAppsTBShowText {
- get {
- return ((bool)(this["ExtAppsTBShowText"]));
- }
- set {
- this["ExtAppsTBShowText"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("0, 0")]
- public global::System.Drawing.Point ExtAppsTBLocation {
- get {
- return ((global::System.Drawing.Point)(this["ExtAppsTBLocation"]));
- }
- set {
- this["ExtAppsTBLocation"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Bottom")]
- public string ExtAppsTBParentDock {
- get {
- return ((string)(this["ExtAppsTBParentDock"]));
- }
- set {
- this["ExtAppsTBParentDock"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool QuickyTBVisible {
- get {
- return ((bool)(this["QuickyTBVisible"]));
- }
- set {
- this["QuickyTBVisible"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("3, 24")]
- public global::System.Drawing.Point QuickyTBLocation {
- get {
- return ((global::System.Drawing.Point)(this["QuickyTBLocation"]));
- }
- set {
- this["QuickyTBLocation"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Top")]
- public string QuickyTBParentDock {
- get {
- return ((string)(this["QuickyTBParentDock"]));
- }
- set {
- this["QuickyTBParentDock"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ResetToolbars {
- get {
- return ((bool)(this["ResetToolbars"]));
- }
- set {
- this["ResetToolbars"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool UseSQLServer {
- get {
- return ((bool)(this["UseSQLServer"]));
- }
- set {
- this["UseSQLServer"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string SQLHost {
- get {
- return ((string)(this["SQLHost"]));
- }
- set {
- this["SQLHost"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string SQLUser {
- get {
- return ((string)(this["SQLUser"]));
- }
- set {
- this["SQLUser"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string SQLPass {
- get {
- return ((string)(this["SQLPass"]));
- }
- set {
- this["SQLPass"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultCacheBitmaps {
- get {
- return ((bool)(this["InhDefaultCacheBitmaps"]));
- }
- set {
- this["InhDefaultCacheBitmaps"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultColors {
- get {
- return ((bool)(this["InhDefaultColors"]));
- }
- set {
- this["InhDefaultColors"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultDescription {
- get {
- return ((bool)(this["InhDefaultDescription"]));
- }
- set {
- this["InhDefaultDescription"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultDisplayThemes {
- get {
- return ((bool)(this["InhDefaultDisplayThemes"]));
- }
- set {
- this["InhDefaultDisplayThemes"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultDisplayWallpaper {
- get {
- return ((bool)(this["InhDefaultDisplayWallpaper"]));
- }
- set {
- this["InhDefaultDisplayWallpaper"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultDomain {
- get {
- return ((bool)(this["InhDefaultDomain"]));
- }
- set {
- this["InhDefaultDomain"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultIcon {
- get {
- return ((bool)(this["InhDefaultIcon"]));
- }
- set {
- this["InhDefaultIcon"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultPassword {
- get {
- return ((bool)(this["InhDefaultPassword"]));
- }
- set {
- this["InhDefaultPassword"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultPort {
- get {
- return ((bool)(this["InhDefaultPort"]));
- }
- set {
- this["InhDefaultPort"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultProtocol {
- get {
- return ((bool)(this["InhDefaultProtocol"]));
- }
- set {
- this["InhDefaultProtocol"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultPuttySession {
- get {
- return ((bool)(this["InhDefaultPuttySession"]));
- }
- set {
- this["InhDefaultPuttySession"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRedirectDiskDrives {
- get {
- return ((bool)(this["InhDefaultRedirectDiskDrives"]));
- }
- set {
- this["InhDefaultRedirectDiskDrives"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRedirectKeys {
- get {
- return ((bool)(this["InhDefaultRedirectKeys"]));
- }
- set {
- this["InhDefaultRedirectKeys"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRedirectPorts {
- get {
- return ((bool)(this["InhDefaultRedirectPorts"]));
- }
- set {
- this["InhDefaultRedirectPorts"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRedirectPrinters {
- get {
- return ((bool)(this["InhDefaultRedirectPrinters"]));
- }
- set {
- this["InhDefaultRedirectPrinters"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRedirectSmartCards {
- get {
- return ((bool)(this["InhDefaultRedirectSmartCards"]));
- }
- set {
- this["InhDefaultRedirectSmartCards"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRedirectSound {
- get {
- return ((bool)(this["InhDefaultRedirectSound"]));
- }
- set {
- this["InhDefaultRedirectSound"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultResolution {
- get {
- return ((bool)(this["InhDefaultResolution"]));
- }
- set {
- this["InhDefaultResolution"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultUseConsoleSession {
- get {
- return ((bool)(this["InhDefaultUseConsoleSession"]));
- }
- set {
- this["InhDefaultUseConsoleSession"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultUsername {
- get {
- return ((bool)(this["InhDefaultUsername"]));
- }
- set {
- this["InhDefaultUsername"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultPanel {
- get {
- return ((bool)(this["InhDefaultPanel"]));
- }
- set {
- this["InhDefaultPanel"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("EncrBasic")]
- public string ConDefaultICAEncryptionStrength {
- get {
- return ((string)(this["ConDefaultICAEncryptionStrength"]));
- }
- set {
- this["ConDefaultICAEncryptionStrength"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultICAEncryptionStrength {
- get {
- return ((bool)(this["InhDefaultICAEncryptionStrength"]));
- }
- set {
- this["InhDefaultICAEncryptionStrength"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultPreExtApp {
- get {
- return ((string)(this["ConDefaultPreExtApp"]));
- }
- set {
- this["ConDefaultPreExtApp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultPostExtApp {
- get {
- return ((string)(this["ConDefaultPostExtApp"]));
- }
- set {
- this["ConDefaultPostExtApp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultPreExtApp {
- get {
- return ((bool)(this["InhDefaultPreExtApp"]));
- }
- set {
- this["InhDefaultPreExtApp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultPostExtApp {
- get {
- return ((bool)(this["InhDefaultPostExtApp"]));
- }
- set {
- this["InhDefaultPostExtApp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool SetHostnameLikeDisplayName {
- get {
- return ((bool)(this["SetHostnameLikeDisplayName"]));
- }
- set {
- this["SetHostnameLikeDisplayName"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool DoubleClickOnTabClosesIt {
- get {
- return ((bool)(this["DoubleClickOnTabClosesIt"]));
- }
- set {
- this["DoubleClickOnTabClosesIt"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ReconnectOnDisconnect {
- get {
- return ((bool)(this["ReconnectOnDisconnect"]));
- }
- set {
- this["ReconnectOnDisconnect"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool AlwaysShowPanelSelectionDlg {
- get {
- return ((bool)(this["AlwaysShowPanelSelectionDlg"]));
- }
- set {
- this["AlwaysShowPanelSelectionDlg"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("AuthVNC")]
- public string ConDefaultVNCAuthMode {
- get {
- return ((string)(this["ConDefaultVNCAuthMode"]));
- }
- set {
- this["ConDefaultVNCAuthMode"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("ColNormal")]
- public string ConDefaultVNCColors {
- get {
- return ((string)(this["ConDefaultVNCColors"]));
- }
- set {
- this["ConDefaultVNCColors"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("SmartSAspect")]
- public string ConDefaultVNCSmartSizeMode {
- get {
- return ((string)(this["ConDefaultVNCSmartSizeMode"]));
- }
- set {
- this["ConDefaultVNCSmartSizeMode"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultVNCViewOnly {
- get {
- return ((bool)(this["ConDefaultVNCViewOnly"]));
- }
- set {
- this["ConDefaultVNCViewOnly"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("CompNone")]
- public string ConDefaultVNCCompression {
- get {
- return ((string)(this["ConDefaultVNCCompression"]));
- }
- set {
- this["ConDefaultVNCCompression"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("EncHextile")]
- public string ConDefaultVNCEncoding {
- get {
- return ((string)(this["ConDefaultVNCEncoding"]));
- }
- set {
- this["ConDefaultVNCEncoding"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultVNCProxyIP {
- get {
- return ((string)(this["ConDefaultVNCProxyIP"]));
- }
- set {
- this["ConDefaultVNCProxyIP"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultVNCProxyPassword {
- get {
- return ((string)(this["ConDefaultVNCProxyPassword"]));
- }
- set {
- this["ConDefaultVNCProxyPassword"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("0")]
- public int ConDefaultVNCProxyPort {
- get {
- return ((int)(this["ConDefaultVNCProxyPort"]));
- }
- set {
- this["ConDefaultVNCProxyPort"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("ProxyNone")]
- public string ConDefaultVNCProxyType {
- get {
- return ((string)(this["ConDefaultVNCProxyType"]));
- }
- set {
- this["ConDefaultVNCProxyType"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultVNCProxyUsername {
- get {
- return ((string)(this["ConDefaultVNCProxyUsername"]));
- }
- set {
- this["ConDefaultVNCProxyUsername"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCAuthMode {
- get {
- return ((bool)(this["InhDefaultVNCAuthMode"]));
- }
- set {
- this["InhDefaultVNCAuthMode"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCColors {
- get {
- return ((bool)(this["InhDefaultVNCColors"]));
- }
- set {
- this["InhDefaultVNCColors"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCSmartSizeMode {
- get {
- return ((bool)(this["InhDefaultVNCSmartSizeMode"]));
- }
- set {
- this["InhDefaultVNCSmartSizeMode"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCViewOnly {
- get {
- return ((bool)(this["InhDefaultVNCViewOnly"]));
- }
- set {
- this["InhDefaultVNCViewOnly"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCCompression {
- get {
- return ((bool)(this["InhDefaultVNCCompression"]));
- }
- set {
- this["InhDefaultVNCCompression"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCEncoding {
- get {
- return ((bool)(this["InhDefaultVNCEncoding"]));
- }
- set {
- this["InhDefaultVNCEncoding"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCProxyIP {
- get {
- return ((bool)(this["InhDefaultVNCProxyIP"]));
- }
- set {
- this["InhDefaultVNCProxyIP"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCProxyPassword {
- get {
- return ((bool)(this["InhDefaultVNCProxyPassword"]));
- }
- set {
- this["InhDefaultVNCProxyPassword"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCProxyPort {
- get {
- return ((bool)(this["InhDefaultVNCProxyPort"]));
- }
- set {
- this["InhDefaultVNCProxyPort"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCProxyType {
- get {
- return ((bool)(this["InhDefaultVNCProxyType"]));
- }
- set {
- this["InhDefaultVNCProxyType"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultVNCProxyUsername {
- get {
- return ((bool)(this["InhDefaultVNCProxyUsername"]));
- }
- set {
- this["InhDefaultVNCProxyUsername"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool MinimizeToTray {
- get {
- return ((bool)(this["MinimizeToTray"]));
- }
- set {
- this["MinimizeToTray"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool SingleClickSwitchesToOpenConnection {
- get {
- return ((bool)(this["SingleClickSwitchesToOpenConnection"]));
- }
- set {
- this["SingleClickSwitchesToOpenConnection"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("NoAuth")]
- public string ConDefaultRDPAuthenticationLevel {
- get {
- return ((string)(this["ConDefaultRDPAuthenticationLevel"]));
- }
- set {
- this["ConDefaultRDPAuthenticationLevel"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDPAuthenticationLevel {
- get {
- return ((bool)(this["InhDefaultRDPAuthenticationLevel"]));
- }
- set {
- this["InhDefaultRDPAuthenticationLevel"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("5500")]
- public int UVNCSCPort {
- get {
- return ((int)(this["UVNCSCPort"]));
- }
- set {
- this["UVNCSCPort"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool StartupComponentsCheck {
- get {
- return ((bool)(this["StartupComponentsCheck"]));
- }
- set {
- this["StartupComponentsCheck"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string XULRunnerPath {
- get {
- return ((string)(this["XULRunnerPath"]));
- }
- set {
- this["XULRunnerPath"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("IE")]
- public string ConDefaultRenderingEngine {
- get {
- return ((string)(this["ConDefaultRenderingEngine"]));
- }
- set {
- this["ConDefaultRenderingEngine"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRenderingEngine {
- get {
- return ((bool)(this["InhDefaultRenderingEngine"]));
- }
- set {
- this["InhDefaultRenderingEngine"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultMacAddress {
- get {
- return ((string)(this["ConDefaultMacAddress"]));
- }
- set {
- this["ConDefaultMacAddress"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultMacAddress {
- get {
- return ((bool)(this["InhDefaultMacAddress"]));
- }
- set {
- this["InhDefaultMacAddress"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool EncryptCompleteConnectionsFile {
- get {
- return ((bool)(this["EncryptCompleteConnectionsFile"]));
- }
- set {
- this["EncryptCompleteConnectionsFile"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultUserField {
- get {
- return ((string)(this["ConDefaultUserField"]));
- }
- set {
- this["ConDefaultUserField"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultUserField {
- get {
- return ((bool)(this["InhDefaultUserField"]));
- }
- set {
- this["InhDefaultUserField"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultExtApp {
- get {
- return ((string)(this["ConDefaultExtApp"]));
- }
- set {
- this["ConDefaultExtApp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultExtApp {
- get {
- return ((bool)(this["InhDefaultExtApp"]));
- }
- set {
- this["InhDefaultExtApp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool CheckForUpdatesAsked {
- get {
- return ((bool)(this["CheckForUpdatesAsked"]));
- }
- set {
- this["CheckForUpdatesAsked"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("14")]
- public int CheckForUpdatesFrequencyDays {
- get {
- return ((int)(this["CheckForUpdatesFrequencyDays"]));
- }
- set {
- this["CheckForUpdatesFrequencyDays"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("1980-01-01")]
- public global::System.DateTime CheckForUpdatesLastCheck {
- get {
- return ((global::System.DateTime)(this["CheckForUpdatesLastCheck"]));
- }
- set {
- this["CheckForUpdatesLastCheck"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool UpdatePending {
- get {
- return ((bool)(this["UpdatePending"]));
- }
- set {
- this["UpdatePending"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Never")]
- public string ConDefaultRDGatewayUsageMethod {
- get {
- return ((string)(this["ConDefaultRDGatewayUsageMethod"]));
- }
- set {
- this["ConDefaultRDGatewayUsageMethod"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Yes")]
- public string ConDefaultRDGatewayUseConnectionCredentials {
- get {
- return ((string)(this["ConDefaultRDGatewayUseConnectionCredentials"]));
- }
- set {
- this["ConDefaultRDGatewayUseConnectionCredentials"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")]
- public string ConDefaultIcon {
- get {
- return ((string)(this["ConDefaultIcon"]));
- }
- set {
- this["ConDefaultIcon"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDGatewayUsageMethod {
- get {
- return ((bool)(this["InhDefaultRDGatewayUsageMethod"]));
- }
- set {
- this["InhDefaultRDGatewayUsageMethod"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDGatewayHostname {
- get {
- return ((bool)(this["InhDefaultRDGatewayHostname"]));
- }
- set {
- this["InhDefaultRDGatewayHostname"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDGatewayUsername {
- get {
- return ((bool)(this["InhDefaultRDGatewayUsername"]));
- }
- set {
- this["InhDefaultRDGatewayUsername"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDGatewayPassword {
- get {
- return ((bool)(this["InhDefaultRDGatewayPassword"]));
- }
- set {
- this["InhDefaultRDGatewayPassword"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDGatewayDomain {
- get {
- return ((bool)(this["InhDefaultRDGatewayDomain"]));
- }
- set {
- this["InhDefaultRDGatewayDomain"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDGatewayUseConnectionCredentials {
- get {
- return ((bool)(this["InhDefaultRDGatewayUseConnectionCredentials"]));
- }
- set {
- this["InhDefaultRDGatewayUseConnectionCredentials"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("5")]
- public int RdpReconnectionCount {
- get {
- return ((int)(this["RdpReconnectionCount"]));
- }
- set {
- this["RdpReconnectionCount"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string OverrideUICulture {
- get {
- return ((string)(this["OverrideUICulture"]));
- }
- set {
- this["OverrideUICulture"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultRDGatewayHostname {
- get {
- return ((string)(this["ConDefaultRDGatewayHostname"]));
- }
- set {
- this["ConDefaultRDGatewayHostname"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultRDGatewayUsername {
- get {
- return ((string)(this["ConDefaultRDGatewayUsername"]));
- }
- set {
- this["ConDefaultRDGatewayUsername"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultRDGatewayPassword {
- get {
- return ((string)(this["ConDefaultRDGatewayPassword"]));
- }
- set {
- this["ConDefaultRDGatewayPassword"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultRDGatewayDomain {
- get {
- return ((string)(this["ConDefaultRDGatewayDomain"]));
- }
- set {
- this["ConDefaultRDGatewayDomain"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultEnableFontSmoothing {
- get {
- return ((bool)(this["ConDefaultEnableFontSmoothing"]));
- }
- set {
- this["ConDefaultEnableFontSmoothing"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultEnableFontSmoothing {
- get {
- return ((bool)(this["InhDefaultEnableFontSmoothing"]));
- }
- set {
- this["InhDefaultEnableFontSmoothing"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultEnableDesktopComposition {
- get {
- return ((bool)(this["ConDefaultEnableDesktopComposition"]));
- }
- set {
- this["ConDefaultEnableDesktopComposition"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultEnableDesktopComposition {
- get {
- return ((bool)(this["InhDefaultEnableDesktopComposition"]));
- }
- set {
- this["InhDefaultEnableDesktopComposition"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("4")]
- public int ConfirmCloseConnection {
- get {
- return ((int)(this["ConfirmCloseConnection"]));
- }
- set {
- this["ConfirmCloseConnection"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Drawing.Size MainFormRestoreSize {
- get {
- return ((global::System.Drawing.Size)(this["MainFormRestoreSize"]));
- }
- set {
- this["MainFormRestoreSize"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Drawing.Point MainFormRestoreLocation {
- get {
- return ((global::System.Drawing.Point)(this["MainFormRestoreLocation"]));
- }
- set {
- this["MainFormRestoreLocation"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")]
- public string SQLDatabaseName {
- get {
- return ((string)(this["SQLDatabaseName"]));
- }
- set {
- this["SQLDatabaseName"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("10")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public int BackupFileKeepCount {
- get {
- return ((int)(this["BackupFileKeepCount"]));
- }
- set {
- this["BackupFileKeepCount"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("{0}.{1:yyyyMMdd-HHmmssffff}.backup")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public string BackupFileNameFormat {
- get {
- return ((string)(this["BackupFileNameFormat"]));
- }
- set {
- this["BackupFileNameFormat"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultUseCredSsp {
- get {
- return ((bool)(this["InhDefaultUseCredSsp"]));
- }
- set {
- this["InhDefaultUseCredSsp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool ConDefaultUseCredSsp {
- get {
- return ((bool)(this["ConDefaultUseCredSsp"]));
- }
- set {
- this["ConDefaultUseCredSsp"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public bool AlwaysShowPanelTabs {
- get {
- return ((bool)(this["AlwaysShowPanelTabs"]));
- }
- set {
- this["AlwaysShowPanelTabs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public bool IdentifyQuickConnectTabs {
- get {
- return ((bool)(this["IdentifyQuickConnectTabs"]));
- }
- set {
- this["IdentifyQuickConnectTabs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("release")]
- public string UpdateChannel {
- get {
- return ((string)(this["UpdateChannel"]));
- }
- set {
- this["UpdateChannel"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ThemeName {
- get {
- return ((string)(this["ThemeName"]));
- }
- set {
- this["ThemeName"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool ShowConfigHelpText {
- get {
- return ((bool)(this["ShowConfigHelpText"]));
- }
- set {
- this["ShowConfigHelpText"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string PuttySavedSessionsName {
- get {
- return ((string)(this["PuttySavedSessionsName"]));
- }
- set {
- this["PuttySavedSessionsName"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string PuttySavedSessionsPanel {
- get {
- return ((string)(this["PuttySavedSessionsPanel"]));
- }
- set {
- this["PuttySavedSessionsPanel"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool CompatibilityWarnLenovoAutoScrollUtility {
- get {
- return ((bool)(this["CompatibilityWarnLenovoAutoScrollUtility"]));
- }
- set {
- this["CompatibilityWarnLenovoAutoScrollUtility"] = value;
- }
- }
-
- [global::System.Configuration.ApplicationScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("https://mremoteng.org/")]
- public string UpdateAddress {
- get {
- return ((string)(this["UpdateAddress"]));
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string ConDefaultLoadBalanceInfo {
- get {
- return ((string)(this["ConDefaultLoadBalanceInfo"]));
- }
- set {
- this["ConDefaultLoadBalanceInfo"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool ConDefaultAutomaticResize {
- get {
- return ((bool)(this["ConDefaultAutomaticResize"]));
- }
- set {
- this["ConDefaultAutomaticResize"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultLoadBalanceInfo {
- get {
- return ((bool)(this["InhDefaultLoadBalanceInfo"]));
- }
- set {
- this["InhDefaultLoadBalanceInfo"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultAutomaticResize {
- get {
- return ((bool)(this["InhDefaultAutomaticResize"]));
- }
- set {
- this["InhDefaultAutomaticResize"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("RDP")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public string QuickConnectProtocol {
- get {
- return ((string)(this["QuickConnectProtocol"]));
- }
- set {
- this["QuickConnectProtocol"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("9/9, 33/8")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public string KeysPreviousTab {
- get {
- return ((string)(this["KeysPreviousTab"]));
- }
- set {
- this["KeysPreviousTab"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("9/8, 34/8")]
- [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
- public string KeysNextTab {
- get {
- return ((string)(this["KeysNextTab"]));
- }
- set {
- this["KeysNextTab"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowCompleteConsPathInTitle {
- get {
- return ((bool)(this["ShowCompleteConsPathInTitle"]));
- }
- set {
- this["ShowCompleteConsPathInTitle"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("20")]
- public int ConRDPOverallConnectionTimeout {
- get {
- return ((int)(this["ConRDPOverallConnectionTimeout"]));
- }
- set {
- this["ConRDPOverallConnectionTimeout"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("AES")]
- public global::mRemoteNG.Security.BlockCipherEngines EncryptionEngine {
- get {
- return ((global::mRemoteNG.Security.BlockCipherEngines)(this["EncryptionEngine"]));
- }
- set {
- this["EncryptionEngine"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("GCM")]
- public global::mRemoteNG.Security.BlockCipherModes EncryptionBlockCipherMode {
- get {
- return ((global::mRemoteNG.Security.BlockCipherModes)(this["EncryptionBlockCipherMode"]));
- }
- set {
- this["EncryptionBlockCipherMode"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("1000")]
- public int EncryptionKeyDerivationIterations {
- get {
- return ((int)(this["EncryptionKeyDerivationIterations"]));
- }
- set {
- this["EncryptionKeyDerivationIterations"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("Dynamic")]
- public string ConDefaultSoundQuality {
- get {
- return ((string)(this["ConDefaultSoundQuality"]));
- }
- set {
- this["ConDefaultSoundQuality"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultSoundQuality {
- get {
- return ((bool)(this["InhDefaultSoundQuality"]));
- }
- set {
- this["InhDefaultSoundQuality"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("0")]
- public int ConDefaultRDPMinutesToIdleTimeout {
- get {
- return ((int)(this["ConDefaultRDPMinutesToIdleTimeout"]));
- }
- set {
- this["ConDefaultRDPMinutesToIdleTimeout"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDPMinutesToIdleTimeout {
- get {
- return ((bool)(this["InhDefaultRDPMinutesToIdleTimeout"]));
- }
- set {
- this["InhDefaultRDPMinutesToIdleTimeout"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ConDefaultRDPAlertIdleTimeout {
- get {
- return ((bool)(this["ConDefaultRDPAlertIdleTimeout"]));
- }
- set {
- this["ConDefaultRDPAlertIdleTimeout"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultRDPAlertIdleTimeout {
- get {
- return ((bool)(this["InhDefaultRDPAlertIdleTimeout"]));
- }
- set {
- this["InhDefaultRDPAlertIdleTimeout"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool InhDefaultCredentialRecord {
- get {
- return ((bool)(this["InhDefaultCredentialRecord"]));
- }
- set {
- this["InhDefaultCredentialRecord"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("00000000-0000-0000-0000-000000000000")]
- public global::System.Guid ConDefaultCredentialRecord {
- get {
- return ((global::System.Guid)(this["ConDefaultCredentialRecord"]));
- }
- set {
- this["ConDefaultCredentialRecord"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
- public string LogFilePath {
- get {
- return ((string)(this["LogFilePath"]));
- }
- set {
- this["LogFilePath"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool TextLogMessageWriterWriteDebugMsgs {
- get {
- return ((bool)(this["TextLogMessageWriterWriteDebugMsgs"]));
- }
- set {
- this["TextLogMessageWriterWriteDebugMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool TextLogMessageWriterWriteInfoMsgs {
- get {
- return ((bool)(this["TextLogMessageWriterWriteInfoMsgs"]));
- }
- set {
- this["TextLogMessageWriterWriteInfoMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool TextLogMessageWriterWriteWarningMsgs {
- get {
- return ((bool)(this["TextLogMessageWriterWriteWarningMsgs"]));
- }
- set {
- this["TextLogMessageWriterWriteWarningMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool TextLogMessageWriterWriteErrorMsgs {
- get {
- return ((bool)(this["TextLogMessageWriterWriteErrorMsgs"]));
- }
- set {
- this["TextLogMessageWriterWriteErrorMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool NotificationPanelWriterWriteDebugMsgs {
- get {
- return ((bool)(this["NotificationPanelWriterWriteDebugMsgs"]));
- }
- set {
- this["NotificationPanelWriterWriteDebugMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool NotificationPanelWriterWriteInfoMsgs {
- get {
- return ((bool)(this["NotificationPanelWriterWriteInfoMsgs"]));
- }
- set {
- this["NotificationPanelWriterWriteInfoMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool NotificationPanelWriterWriteWarningMsgs {
- get {
- return ((bool)(this["NotificationPanelWriterWriteWarningMsgs"]));
- }
- set {
- this["NotificationPanelWriterWriteWarningMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool NotificationPanelWriterWriteErrorMsgs {
- get {
- return ((bool)(this["NotificationPanelWriterWriteErrorMsgs"]));
- }
- set {
- this["NotificationPanelWriterWriteErrorMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool PopupMessageWriterWriteDebugMsgs {
- get {
- return ((bool)(this["PopupMessageWriterWriteDebugMsgs"]));
- }
- set {
- this["PopupMessageWriterWriteDebugMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool PopupMessageWriterWriteInfoMsgs {
- get {
- return ((bool)(this["PopupMessageWriterWriteInfoMsgs"]));
- }
- set {
- this["PopupMessageWriterWriteInfoMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool PopupMessageWriterWriteWarningMsgs {
- get {
- return ((bool)(this["PopupMessageWriterWriteWarningMsgs"]));
- }
- set {
- this["PopupMessageWriterWriteWarningMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool PopupMessageWriterWriteErrorMsgs {
- get {
- return ((bool)(this["PopupMessageWriterWriteErrorMsgs"]));
- }
- set {
- this["PopupMessageWriterWriteErrorMsgs"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool LogToApplicationDirectory {
- get {
- return ((bool)(this["LogToApplicationDirectory"]));
- }
- set {
- this["LogToApplicationDirectory"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool PromptUnlockCredReposOnStartup {
- get {
- return ((bool)(this["PromptUnlockCredReposOnStartup"]));
- }
- set {
- this["PromptUnlockCredReposOnStartup"] = value;
- }
- }
-
- [global::System.Configuration.ApplicationScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-" +
- "TR,zh-CN,zh-TW")]
- public string SupportedUICultures {
- get {
- return ((string)(this["SupportedUICultures"]));
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ThemingActive {
- get {
- return ((bool)(this["ThemingActive"]));
- }
- set {
- this["ThemingActive"] = value;
- }
- }
- }
-}
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace mRemoteNG {
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default {
+ get {
+ return defaultInstance;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0, 0")]
+ public global::System.Drawing.Point MainFormLocation {
+ get {
+ return ((global::System.Drawing.Point)(this["MainFormLocation"]));
+ }
+ set {
+ this["MainFormLocation"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0, 0")]
+ public global::System.Drawing.Size MainFormSize {
+ get {
+ return ((global::System.Drawing.Size)(this["MainFormSize"]));
+ }
+ set {
+ this["MainFormSize"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Normal")]
+ public global::System.Windows.Forms.FormWindowState MainFormState {
+ get {
+ return ((global::System.Windows.Forms.FormWindowState)(this["MainFormState"]));
+ }
+ set {
+ this["MainFormState"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool MainFormKiosk {
+ get {
+ return ((bool)(this["MainFormKiosk"]));
+ }
+ set {
+ this["MainFormKiosk"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool DoUpgrade {
+ get {
+ return ((bool)(this["DoUpgrade"]));
+ }
+ set {
+ this["DoUpgrade"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string CustomPuttyPath {
+ get {
+ return ((string)(this["CustomPuttyPath"]));
+ }
+ set {
+ this["CustomPuttyPath"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool SwitchToMCOnInformation {
+ get {
+ return ((bool)(this["SwitchToMCOnInformation"]));
+ }
+ set {
+ this["SwitchToMCOnInformation"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool SwitchToMCOnWarning {
+ get {
+ return ((bool)(this["SwitchToMCOnWarning"]));
+ }
+ set {
+ this["SwitchToMCOnWarning"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool SwitchToMCOnError {
+ get {
+ return ((bool)(this["SwitchToMCOnError"]));
+ }
+ set {
+ this["SwitchToMCOnError"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool AutomaticallyGetSessionInfo {
+ get {
+ return ((bool)(this["AutomaticallyGetSessionInfo"]));
+ }
+ set {
+ this["AutomaticallyGetSessionInfo"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool LoadConsFromCustomLocation {
+ get {
+ return ((bool)(this["LoadConsFromCustomLocation"]));
+ }
+ set {
+ this["LoadConsFromCustomLocation"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string CustomConsPath {
+ get {
+ return ((string)(this["CustomConsPath"]));
+ }
+ set {
+ this["CustomConsPath"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool SaveConsOnExit {
+ get {
+ return ((bool)(this["SaveConsOnExit"]));
+ }
+ set {
+ this["SaveConsOnExit"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool CheckForUpdatesOnStartup {
+ get {
+ return ((bool)(this["CheckForUpdatesOnStartup"]));
+ }
+ set {
+ this["CheckForUpdatesOnStartup"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ShowDescriptionTooltipsInTree {
+ get {
+ return ((bool)(this["ShowDescriptionTooltipsInTree"]));
+ }
+ set {
+ this["ShowDescriptionTooltipsInTree"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ShowSystemTrayIcon {
+ get {
+ return ((bool)(this["ShowSystemTrayIcon"]));
+ }
+ set {
+ this["ShowSystemTrayIcon"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool OpenTabsRightOfSelected {
+ get {
+ return ((bool)(this["OpenTabsRightOfSelected"]));
+ }
+ set {
+ this["OpenTabsRightOfSelected"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ShowLogonInfoOnTabs {
+ get {
+ return ((bool)(this["ShowLogonInfoOnTabs"]));
+ }
+ set {
+ this["ShowLogonInfoOnTabs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool SingleClickOnConnectionOpensIt {
+ get {
+ return ((bool)(this["SingleClickOnConnectionOpensIt"]));
+ }
+ set {
+ this["SingleClickOnConnectionOpensIt"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("noinfo")]
+ public string EmptyCredentials {
+ get {
+ return ((string)(this["EmptyCredentials"]));
+ }
+ set {
+ this["EmptyCredentials"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string DefaultUsername {
+ get {
+ return ((string)(this["DefaultUsername"]));
+ }
+ set {
+ this["DefaultUsername"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string DefaultPassword {
+ get {
+ return ((string)(this["DefaultPassword"]));
+ }
+ set {
+ this["DefaultPassword"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string DefaultDomain {
+ get {
+ return ((string)(this["DefaultDomain"]));
+ }
+ set {
+ this["DefaultDomain"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool UseCustomPuttyPath {
+ get {
+ return ((bool)(this["UseCustomPuttyPath"]));
+ }
+ set {
+ this["UseCustomPuttyPath"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool FirstStart {
+ get {
+ return ((bool)(this["FirstStart"]));
+ }
+ set {
+ this["FirstStart"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ShowProtocolOnTabs {
+ get {
+ return ((bool)(this["ShowProtocolOnTabs"]));
+ }
+ set {
+ this["ShowProtocolOnTabs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ResetPanels {
+ get {
+ return ((bool)(this["ResetPanels"]));
+ }
+ set {
+ this["ResetPanels"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool UpdateUseProxy {
+ get {
+ return ((bool)(this["UpdateUseProxy"]));
+ }
+ set {
+ this["UpdateUseProxy"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string UpdateProxyAddress {
+ get {
+ return ((string)(this["UpdateProxyAddress"]));
+ }
+ set {
+ this["UpdateProxyAddress"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("80")]
+ public int UpdateProxyPort {
+ get {
+ return ((int)(this["UpdateProxyPort"]));
+ }
+ set {
+ this["UpdateProxyPort"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool UpdateProxyUseAuthentication {
+ get {
+ return ((bool)(this["UpdateProxyUseAuthentication"]));
+ }
+ set {
+ this["UpdateProxyUseAuthentication"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string UpdateProxyAuthUser {
+ get {
+ return ((string)(this["UpdateProxyAuthUser"]));
+ }
+ set {
+ this["UpdateProxyAuthUser"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string UpdateProxyAuthPass {
+ get {
+ return ((string)(this["UpdateProxyAuthPass"]));
+ }
+ set {
+ this["UpdateProxyAuthPass"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultDescription {
+ get {
+ return ((string)(this["ConDefaultDescription"]));
+ }
+ set {
+ this["ConDefaultDescription"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("RDP")]
+ public string ConDefaultProtocol {
+ get {
+ return ((string)(this["ConDefaultProtocol"]));
+ }
+ set {
+ this["ConDefaultProtocol"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Default Settings")]
+ public string ConDefaultPuttySession {
+ get {
+ return ((string)(this["ConDefaultPuttySession"]));
+ }
+ set {
+ this["ConDefaultPuttySession"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultUseConsoleSession {
+ get {
+ return ((bool)(this["ConDefaultUseConsoleSession"]));
+ }
+ set {
+ this["ConDefaultUseConsoleSession"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("FitToWindow")]
+ public string ConDefaultResolution {
+ get {
+ return ((string)(this["ConDefaultResolution"]));
+ }
+ set {
+ this["ConDefaultResolution"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Colors16Bit")]
+ public string ConDefaultColors {
+ get {
+ return ((string)(this["ConDefaultColors"]));
+ }
+ set {
+ this["ConDefaultColors"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultCacheBitmaps {
+ get {
+ return ((bool)(this["ConDefaultCacheBitmaps"]));
+ }
+ set {
+ this["ConDefaultCacheBitmaps"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultDisplayWallpaper {
+ get {
+ return ((bool)(this["ConDefaultDisplayWallpaper"]));
+ }
+ set {
+ this["ConDefaultDisplayWallpaper"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultDisplayThemes {
+ get {
+ return ((bool)(this["ConDefaultDisplayThemes"]));
+ }
+ set {
+ this["ConDefaultDisplayThemes"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultRedirectKeys {
+ get {
+ return ((bool)(this["ConDefaultRedirectKeys"]));
+ }
+ set {
+ this["ConDefaultRedirectKeys"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultRedirectDiskDrives {
+ get {
+ return ((bool)(this["ConDefaultRedirectDiskDrives"]));
+ }
+ set {
+ this["ConDefaultRedirectDiskDrives"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultRedirectPrinters {
+ get {
+ return ((bool)(this["ConDefaultRedirectPrinters"]));
+ }
+ set {
+ this["ConDefaultRedirectPrinters"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultRedirectPorts {
+ get {
+ return ((bool)(this["ConDefaultRedirectPorts"]));
+ }
+ set {
+ this["ConDefaultRedirectPorts"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultRedirectSmartCards {
+ get {
+ return ((bool)(this["ConDefaultRedirectSmartCards"]));
+ }
+ set {
+ this["ConDefaultRedirectSmartCards"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("DoNotPlay")]
+ public string ConDefaultRedirectSound {
+ get {
+ return ((string)(this["ConDefaultRedirectSound"]));
+ }
+ set {
+ this["ConDefaultRedirectSound"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("2")]
+ public int MaxPuttyWaitTime {
+ get {
+ return ((int)(this["MaxPuttyWaitTime"]));
+ }
+ set {
+ this["MaxPuttyWaitTime"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool SingleInstance {
+ get {
+ return ((bool)(this["SingleInstance"]));
+ }
+ set {
+ this["SingleInstance"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool OpenConsFromLastSession {
+ get {
+ return ((bool)(this["OpenConsFromLastSession"]));
+ }
+ set {
+ this["OpenConsFromLastSession"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool NoReconnect {
+ get {
+ return ((bool)(this["NoReconnect"]));
+ }
+ set {
+ this["NoReconnect"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0")]
+ public int AutoSaveEveryMinutes {
+ get {
+ return ((int)(this["AutoSaveEveryMinutes"]));
+ }
+ set {
+ this["AutoSaveEveryMinutes"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ExtAppsTBVisible {
+ get {
+ return ((bool)(this["ExtAppsTBVisible"]));
+ }
+ set {
+ this["ExtAppsTBVisible"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool ExtAppsTBShowText {
+ get {
+ return ((bool)(this["ExtAppsTBShowText"]));
+ }
+ set {
+ this["ExtAppsTBShowText"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0, 0")]
+ public global::System.Drawing.Point ExtAppsTBLocation {
+ get {
+ return ((global::System.Drawing.Point)(this["ExtAppsTBLocation"]));
+ }
+ set {
+ this["ExtAppsTBLocation"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Bottom")]
+ public string ExtAppsTBParentDock {
+ get {
+ return ((string)(this["ExtAppsTBParentDock"]));
+ }
+ set {
+ this["ExtAppsTBParentDock"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool QuickyTBVisible {
+ get {
+ return ((bool)(this["QuickyTBVisible"]));
+ }
+ set {
+ this["QuickyTBVisible"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("3, 24")]
+ public global::System.Drawing.Point QuickyTBLocation {
+ get {
+ return ((global::System.Drawing.Point)(this["QuickyTBLocation"]));
+ }
+ set {
+ this["QuickyTBLocation"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Top")]
+ public string QuickyTBParentDock {
+ get {
+ return ((string)(this["QuickyTBParentDock"]));
+ }
+ set {
+ this["QuickyTBParentDock"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ResetToolbars {
+ get {
+ return ((bool)(this["ResetToolbars"]));
+ }
+ set {
+ this["ResetToolbars"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool UseSQLServer {
+ get {
+ return ((bool)(this["UseSQLServer"]));
+ }
+ set {
+ this["UseSQLServer"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string SQLHost {
+ get {
+ return ((string)(this["SQLHost"]));
+ }
+ set {
+ this["SQLHost"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string SQLUser {
+ get {
+ return ((string)(this["SQLUser"]));
+ }
+ set {
+ this["SQLUser"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string SQLPass {
+ get {
+ return ((string)(this["SQLPass"]));
+ }
+ set {
+ this["SQLPass"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultCacheBitmaps {
+ get {
+ return ((bool)(this["InhDefaultCacheBitmaps"]));
+ }
+ set {
+ this["InhDefaultCacheBitmaps"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultColors {
+ get {
+ return ((bool)(this["InhDefaultColors"]));
+ }
+ set {
+ this["InhDefaultColors"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultDescription {
+ get {
+ return ((bool)(this["InhDefaultDescription"]));
+ }
+ set {
+ this["InhDefaultDescription"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultDisplayThemes {
+ get {
+ return ((bool)(this["InhDefaultDisplayThemes"]));
+ }
+ set {
+ this["InhDefaultDisplayThemes"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultDisplayWallpaper {
+ get {
+ return ((bool)(this["InhDefaultDisplayWallpaper"]));
+ }
+ set {
+ this["InhDefaultDisplayWallpaper"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultDomain {
+ get {
+ return ((bool)(this["InhDefaultDomain"]));
+ }
+ set {
+ this["InhDefaultDomain"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultIcon {
+ get {
+ return ((bool)(this["InhDefaultIcon"]));
+ }
+ set {
+ this["InhDefaultIcon"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultPassword {
+ get {
+ return ((bool)(this["InhDefaultPassword"]));
+ }
+ set {
+ this["InhDefaultPassword"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultPort {
+ get {
+ return ((bool)(this["InhDefaultPort"]));
+ }
+ set {
+ this["InhDefaultPort"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultProtocol {
+ get {
+ return ((bool)(this["InhDefaultProtocol"]));
+ }
+ set {
+ this["InhDefaultProtocol"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultPuttySession {
+ get {
+ return ((bool)(this["InhDefaultPuttySession"]));
+ }
+ set {
+ this["InhDefaultPuttySession"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRedirectDiskDrives {
+ get {
+ return ((bool)(this["InhDefaultRedirectDiskDrives"]));
+ }
+ set {
+ this["InhDefaultRedirectDiskDrives"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRedirectKeys {
+ get {
+ return ((bool)(this["InhDefaultRedirectKeys"]));
+ }
+ set {
+ this["InhDefaultRedirectKeys"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRedirectPorts {
+ get {
+ return ((bool)(this["InhDefaultRedirectPorts"]));
+ }
+ set {
+ this["InhDefaultRedirectPorts"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRedirectPrinters {
+ get {
+ return ((bool)(this["InhDefaultRedirectPrinters"]));
+ }
+ set {
+ this["InhDefaultRedirectPrinters"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRedirectSmartCards {
+ get {
+ return ((bool)(this["InhDefaultRedirectSmartCards"]));
+ }
+ set {
+ this["InhDefaultRedirectSmartCards"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRedirectSound {
+ get {
+ return ((bool)(this["InhDefaultRedirectSound"]));
+ }
+ set {
+ this["InhDefaultRedirectSound"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultResolution {
+ get {
+ return ((bool)(this["InhDefaultResolution"]));
+ }
+ set {
+ this["InhDefaultResolution"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultUseConsoleSession {
+ get {
+ return ((bool)(this["InhDefaultUseConsoleSession"]));
+ }
+ set {
+ this["InhDefaultUseConsoleSession"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultUsername {
+ get {
+ return ((bool)(this["InhDefaultUsername"]));
+ }
+ set {
+ this["InhDefaultUsername"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultPanel {
+ get {
+ return ((bool)(this["InhDefaultPanel"]));
+ }
+ set {
+ this["InhDefaultPanel"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("EncrBasic")]
+ public string ConDefaultICAEncryptionStrength {
+ get {
+ return ((string)(this["ConDefaultICAEncryptionStrength"]));
+ }
+ set {
+ this["ConDefaultICAEncryptionStrength"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultICAEncryptionStrength {
+ get {
+ return ((bool)(this["InhDefaultICAEncryptionStrength"]));
+ }
+ set {
+ this["InhDefaultICAEncryptionStrength"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultPreExtApp {
+ get {
+ return ((string)(this["ConDefaultPreExtApp"]));
+ }
+ set {
+ this["ConDefaultPreExtApp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultPostExtApp {
+ get {
+ return ((string)(this["ConDefaultPostExtApp"]));
+ }
+ set {
+ this["ConDefaultPostExtApp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultPreExtApp {
+ get {
+ return ((bool)(this["InhDefaultPreExtApp"]));
+ }
+ set {
+ this["InhDefaultPreExtApp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultPostExtApp {
+ get {
+ return ((bool)(this["InhDefaultPostExtApp"]));
+ }
+ set {
+ this["InhDefaultPostExtApp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool SetHostnameLikeDisplayName {
+ get {
+ return ((bool)(this["SetHostnameLikeDisplayName"]));
+ }
+ set {
+ this["SetHostnameLikeDisplayName"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool DoubleClickOnTabClosesIt {
+ get {
+ return ((bool)(this["DoubleClickOnTabClosesIt"]));
+ }
+ set {
+ this["DoubleClickOnTabClosesIt"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ReconnectOnDisconnect {
+ get {
+ return ((bool)(this["ReconnectOnDisconnect"]));
+ }
+ set {
+ this["ReconnectOnDisconnect"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool AlwaysShowPanelSelectionDlg {
+ get {
+ return ((bool)(this["AlwaysShowPanelSelectionDlg"]));
+ }
+ set {
+ this["AlwaysShowPanelSelectionDlg"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("AuthVNC")]
+ public string ConDefaultVNCAuthMode {
+ get {
+ return ((string)(this["ConDefaultVNCAuthMode"]));
+ }
+ set {
+ this["ConDefaultVNCAuthMode"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("ColNormal")]
+ public string ConDefaultVNCColors {
+ get {
+ return ((string)(this["ConDefaultVNCColors"]));
+ }
+ set {
+ this["ConDefaultVNCColors"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("SmartSAspect")]
+ public string ConDefaultVNCSmartSizeMode {
+ get {
+ return ((string)(this["ConDefaultVNCSmartSizeMode"]));
+ }
+ set {
+ this["ConDefaultVNCSmartSizeMode"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultVNCViewOnly {
+ get {
+ return ((bool)(this["ConDefaultVNCViewOnly"]));
+ }
+ set {
+ this["ConDefaultVNCViewOnly"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("CompNone")]
+ public string ConDefaultVNCCompression {
+ get {
+ return ((string)(this["ConDefaultVNCCompression"]));
+ }
+ set {
+ this["ConDefaultVNCCompression"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("EncHextile")]
+ public string ConDefaultVNCEncoding {
+ get {
+ return ((string)(this["ConDefaultVNCEncoding"]));
+ }
+ set {
+ this["ConDefaultVNCEncoding"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultVNCProxyIP {
+ get {
+ return ((string)(this["ConDefaultVNCProxyIP"]));
+ }
+ set {
+ this["ConDefaultVNCProxyIP"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultVNCProxyPassword {
+ get {
+ return ((string)(this["ConDefaultVNCProxyPassword"]));
+ }
+ set {
+ this["ConDefaultVNCProxyPassword"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0")]
+ public int ConDefaultVNCProxyPort {
+ get {
+ return ((int)(this["ConDefaultVNCProxyPort"]));
+ }
+ set {
+ this["ConDefaultVNCProxyPort"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("ProxyNone")]
+ public string ConDefaultVNCProxyType {
+ get {
+ return ((string)(this["ConDefaultVNCProxyType"]));
+ }
+ set {
+ this["ConDefaultVNCProxyType"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultVNCProxyUsername {
+ get {
+ return ((string)(this["ConDefaultVNCProxyUsername"]));
+ }
+ set {
+ this["ConDefaultVNCProxyUsername"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCAuthMode {
+ get {
+ return ((bool)(this["InhDefaultVNCAuthMode"]));
+ }
+ set {
+ this["InhDefaultVNCAuthMode"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCColors {
+ get {
+ return ((bool)(this["InhDefaultVNCColors"]));
+ }
+ set {
+ this["InhDefaultVNCColors"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCSmartSizeMode {
+ get {
+ return ((bool)(this["InhDefaultVNCSmartSizeMode"]));
+ }
+ set {
+ this["InhDefaultVNCSmartSizeMode"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCViewOnly {
+ get {
+ return ((bool)(this["InhDefaultVNCViewOnly"]));
+ }
+ set {
+ this["InhDefaultVNCViewOnly"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCCompression {
+ get {
+ return ((bool)(this["InhDefaultVNCCompression"]));
+ }
+ set {
+ this["InhDefaultVNCCompression"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCEncoding {
+ get {
+ return ((bool)(this["InhDefaultVNCEncoding"]));
+ }
+ set {
+ this["InhDefaultVNCEncoding"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCProxyIP {
+ get {
+ return ((bool)(this["InhDefaultVNCProxyIP"]));
+ }
+ set {
+ this["InhDefaultVNCProxyIP"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCProxyPassword {
+ get {
+ return ((bool)(this["InhDefaultVNCProxyPassword"]));
+ }
+ set {
+ this["InhDefaultVNCProxyPassword"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCProxyPort {
+ get {
+ return ((bool)(this["InhDefaultVNCProxyPort"]));
+ }
+ set {
+ this["InhDefaultVNCProxyPort"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCProxyType {
+ get {
+ return ((bool)(this["InhDefaultVNCProxyType"]));
+ }
+ set {
+ this["InhDefaultVNCProxyType"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultVNCProxyUsername {
+ get {
+ return ((bool)(this["InhDefaultVNCProxyUsername"]));
+ }
+ set {
+ this["InhDefaultVNCProxyUsername"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool MinimizeToTray {
+ get {
+ return ((bool)(this["MinimizeToTray"]));
+ }
+ set {
+ this["MinimizeToTray"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool SingleClickSwitchesToOpenConnection {
+ get {
+ return ((bool)(this["SingleClickSwitchesToOpenConnection"]));
+ }
+ set {
+ this["SingleClickSwitchesToOpenConnection"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("NoAuth")]
+ public string ConDefaultRDPAuthenticationLevel {
+ get {
+ return ((string)(this["ConDefaultRDPAuthenticationLevel"]));
+ }
+ set {
+ this["ConDefaultRDPAuthenticationLevel"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDPAuthenticationLevel {
+ get {
+ return ((bool)(this["InhDefaultRDPAuthenticationLevel"]));
+ }
+ set {
+ this["InhDefaultRDPAuthenticationLevel"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("5500")]
+ public int UVNCSCPort {
+ get {
+ return ((int)(this["UVNCSCPort"]));
+ }
+ set {
+ this["UVNCSCPort"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool StartupComponentsCheck {
+ get {
+ return ((bool)(this["StartupComponentsCheck"]));
+ }
+ set {
+ this["StartupComponentsCheck"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string XULRunnerPath {
+ get {
+ return ((string)(this["XULRunnerPath"]));
+ }
+ set {
+ this["XULRunnerPath"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("IE")]
+ public string ConDefaultRenderingEngine {
+ get {
+ return ((string)(this["ConDefaultRenderingEngine"]));
+ }
+ set {
+ this["ConDefaultRenderingEngine"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRenderingEngine {
+ get {
+ return ((bool)(this["InhDefaultRenderingEngine"]));
+ }
+ set {
+ this["InhDefaultRenderingEngine"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultMacAddress {
+ get {
+ return ((string)(this["ConDefaultMacAddress"]));
+ }
+ set {
+ this["ConDefaultMacAddress"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultMacAddress {
+ get {
+ return ((bool)(this["InhDefaultMacAddress"]));
+ }
+ set {
+ this["InhDefaultMacAddress"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool EncryptCompleteConnectionsFile {
+ get {
+ return ((bool)(this["EncryptCompleteConnectionsFile"]));
+ }
+ set {
+ this["EncryptCompleteConnectionsFile"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultUserField {
+ get {
+ return ((string)(this["ConDefaultUserField"]));
+ }
+ set {
+ this["ConDefaultUserField"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultUserField {
+ get {
+ return ((bool)(this["InhDefaultUserField"]));
+ }
+ set {
+ this["InhDefaultUserField"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultExtApp {
+ get {
+ return ((string)(this["ConDefaultExtApp"]));
+ }
+ set {
+ this["ConDefaultExtApp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultExtApp {
+ get {
+ return ((bool)(this["InhDefaultExtApp"]));
+ }
+ set {
+ this["InhDefaultExtApp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool CheckForUpdatesAsked {
+ get {
+ return ((bool)(this["CheckForUpdatesAsked"]));
+ }
+ set {
+ this["CheckForUpdatesAsked"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("14")]
+ public int CheckForUpdatesFrequencyDays {
+ get {
+ return ((int)(this["CheckForUpdatesFrequencyDays"]));
+ }
+ set {
+ this["CheckForUpdatesFrequencyDays"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("1980-01-01")]
+ public global::System.DateTime CheckForUpdatesLastCheck {
+ get {
+ return ((global::System.DateTime)(this["CheckForUpdatesLastCheck"]));
+ }
+ set {
+ this["CheckForUpdatesLastCheck"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool UpdatePending {
+ get {
+ return ((bool)(this["UpdatePending"]));
+ }
+ set {
+ this["UpdatePending"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Never")]
+ public string ConDefaultRDGatewayUsageMethod {
+ get {
+ return ((string)(this["ConDefaultRDGatewayUsageMethod"]));
+ }
+ set {
+ this["ConDefaultRDGatewayUsageMethod"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Yes")]
+ public string ConDefaultRDGatewayUseConnectionCredentials {
+ get {
+ return ((string)(this["ConDefaultRDGatewayUseConnectionCredentials"]));
+ }
+ set {
+ this["ConDefaultRDGatewayUseConnectionCredentials"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")]
+ public string ConDefaultIcon {
+ get {
+ return ((string)(this["ConDefaultIcon"]));
+ }
+ set {
+ this["ConDefaultIcon"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDGatewayUsageMethod {
+ get {
+ return ((bool)(this["InhDefaultRDGatewayUsageMethod"]));
+ }
+ set {
+ this["InhDefaultRDGatewayUsageMethod"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDGatewayHostname {
+ get {
+ return ((bool)(this["InhDefaultRDGatewayHostname"]));
+ }
+ set {
+ this["InhDefaultRDGatewayHostname"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDGatewayUsername {
+ get {
+ return ((bool)(this["InhDefaultRDGatewayUsername"]));
+ }
+ set {
+ this["InhDefaultRDGatewayUsername"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDGatewayPassword {
+ get {
+ return ((bool)(this["InhDefaultRDGatewayPassword"]));
+ }
+ set {
+ this["InhDefaultRDGatewayPassword"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDGatewayDomain {
+ get {
+ return ((bool)(this["InhDefaultRDGatewayDomain"]));
+ }
+ set {
+ this["InhDefaultRDGatewayDomain"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDGatewayUseConnectionCredentials {
+ get {
+ return ((bool)(this["InhDefaultRDGatewayUseConnectionCredentials"]));
+ }
+ set {
+ this["InhDefaultRDGatewayUseConnectionCredentials"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("5")]
+ public int RdpReconnectionCount {
+ get {
+ return ((int)(this["RdpReconnectionCount"]));
+ }
+ set {
+ this["RdpReconnectionCount"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string OverrideUICulture {
+ get {
+ return ((string)(this["OverrideUICulture"]));
+ }
+ set {
+ this["OverrideUICulture"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultRDGatewayHostname {
+ get {
+ return ((string)(this["ConDefaultRDGatewayHostname"]));
+ }
+ set {
+ this["ConDefaultRDGatewayHostname"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultRDGatewayUsername {
+ get {
+ return ((string)(this["ConDefaultRDGatewayUsername"]));
+ }
+ set {
+ this["ConDefaultRDGatewayUsername"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultRDGatewayPassword {
+ get {
+ return ((string)(this["ConDefaultRDGatewayPassword"]));
+ }
+ set {
+ this["ConDefaultRDGatewayPassword"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultRDGatewayDomain {
+ get {
+ return ((string)(this["ConDefaultRDGatewayDomain"]));
+ }
+ set {
+ this["ConDefaultRDGatewayDomain"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultEnableFontSmoothing {
+ get {
+ return ((bool)(this["ConDefaultEnableFontSmoothing"]));
+ }
+ set {
+ this["ConDefaultEnableFontSmoothing"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultEnableFontSmoothing {
+ get {
+ return ((bool)(this["InhDefaultEnableFontSmoothing"]));
+ }
+ set {
+ this["InhDefaultEnableFontSmoothing"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultEnableDesktopComposition {
+ get {
+ return ((bool)(this["ConDefaultEnableDesktopComposition"]));
+ }
+ set {
+ this["ConDefaultEnableDesktopComposition"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultEnableDesktopComposition {
+ get {
+ return ((bool)(this["InhDefaultEnableDesktopComposition"]));
+ }
+ set {
+ this["InhDefaultEnableDesktopComposition"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("4")]
+ public int ConfirmCloseConnection {
+ get {
+ return ((int)(this["ConfirmCloseConnection"]));
+ }
+ set {
+ this["ConfirmCloseConnection"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Drawing.Size MainFormRestoreSize {
+ get {
+ return ((global::System.Drawing.Size)(this["MainFormRestoreSize"]));
+ }
+ set {
+ this["MainFormRestoreSize"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Drawing.Point MainFormRestoreLocation {
+ get {
+ return ((global::System.Drawing.Point)(this["MainFormRestoreLocation"]));
+ }
+ set {
+ this["MainFormRestoreLocation"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")]
+ public string SQLDatabaseName {
+ get {
+ return ((string)(this["SQLDatabaseName"]));
+ }
+ set {
+ this["SQLDatabaseName"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("10")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public int BackupFileKeepCount {
+ get {
+ return ((int)(this["BackupFileKeepCount"]));
+ }
+ set {
+ this["BackupFileKeepCount"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("{0}.{1:yyyyMMdd-HHmmssffff}.backup")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public string BackupFileNameFormat {
+ get {
+ return ((string)(this["BackupFileNameFormat"]));
+ }
+ set {
+ this["BackupFileNameFormat"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultUseCredSsp {
+ get {
+ return ((bool)(this["InhDefaultUseCredSsp"]));
+ }
+ set {
+ this["InhDefaultUseCredSsp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool ConDefaultUseCredSsp {
+ get {
+ return ((bool)(this["ConDefaultUseCredSsp"]));
+ }
+ set {
+ this["ConDefaultUseCredSsp"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public bool AlwaysShowPanelTabs {
+ get {
+ return ((bool)(this["AlwaysShowPanelTabs"]));
+ }
+ set {
+ this["AlwaysShowPanelTabs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public bool IdentifyQuickConnectTabs {
+ get {
+ return ((bool)(this["IdentifyQuickConnectTabs"]));
+ }
+ set {
+ this["IdentifyQuickConnectTabs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("release")]
+ public string UpdateChannel {
+ get {
+ return ((string)(this["UpdateChannel"]));
+ }
+ set {
+ this["UpdateChannel"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ThemeName {
+ get {
+ return ((string)(this["ThemeName"]));
+ }
+ set {
+ this["ThemeName"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool ShowConfigHelpText {
+ get {
+ return ((bool)(this["ShowConfigHelpText"]));
+ }
+ set {
+ this["ShowConfigHelpText"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string PuttySavedSessionsName {
+ get {
+ return ((string)(this["PuttySavedSessionsName"]));
+ }
+ set {
+ this["PuttySavedSessionsName"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string PuttySavedSessionsPanel {
+ get {
+ return ((string)(this["PuttySavedSessionsPanel"]));
+ }
+ set {
+ this["PuttySavedSessionsPanel"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool CompatibilityWarnLenovoAutoScrollUtility {
+ get {
+ return ((bool)(this["CompatibilityWarnLenovoAutoScrollUtility"]));
+ }
+ set {
+ this["CompatibilityWarnLenovoAutoScrollUtility"] = value;
+ }
+ }
+
+ [global::System.Configuration.ApplicationScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("https://mremoteng.org/")]
+ public string UpdateAddress {
+ get {
+ return ((string)(this["UpdateAddress"]));
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string ConDefaultLoadBalanceInfo {
+ get {
+ return ((string)(this["ConDefaultLoadBalanceInfo"]));
+ }
+ set {
+ this["ConDefaultLoadBalanceInfo"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool ConDefaultAutomaticResize {
+ get {
+ return ((bool)(this["ConDefaultAutomaticResize"]));
+ }
+ set {
+ this["ConDefaultAutomaticResize"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultLoadBalanceInfo {
+ get {
+ return ((bool)(this["InhDefaultLoadBalanceInfo"]));
+ }
+ set {
+ this["InhDefaultLoadBalanceInfo"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultAutomaticResize {
+ get {
+ return ((bool)(this["InhDefaultAutomaticResize"]));
+ }
+ set {
+ this["InhDefaultAutomaticResize"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("RDP")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public string QuickConnectProtocol {
+ get {
+ return ((string)(this["QuickConnectProtocol"]));
+ }
+ set {
+ this["QuickConnectProtocol"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("9/9, 33/8")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public string KeysPreviousTab {
+ get {
+ return ((string)(this["KeysPreviousTab"]));
+ }
+ set {
+ this["KeysPreviousTab"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("9/8, 34/8")]
+ [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
+ public string KeysNextTab {
+ get {
+ return ((string)(this["KeysNextTab"]));
+ }
+ set {
+ this["KeysNextTab"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ShowCompleteConsPathInTitle {
+ get {
+ return ((bool)(this["ShowCompleteConsPathInTitle"]));
+ }
+ set {
+ this["ShowCompleteConsPathInTitle"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("20")]
+ public int ConRDPOverallConnectionTimeout {
+ get {
+ return ((int)(this["ConRDPOverallConnectionTimeout"]));
+ }
+ set {
+ this["ConRDPOverallConnectionTimeout"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("AES")]
+ public global::mRemoteNG.Security.BlockCipherEngines EncryptionEngine {
+ get {
+ return ((global::mRemoteNG.Security.BlockCipherEngines)(this["EncryptionEngine"]));
+ }
+ set {
+ this["EncryptionEngine"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("GCM")]
+ public global::mRemoteNG.Security.BlockCipherModes EncryptionBlockCipherMode {
+ get {
+ return ((global::mRemoteNG.Security.BlockCipherModes)(this["EncryptionBlockCipherMode"]));
+ }
+ set {
+ this["EncryptionBlockCipherMode"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("1000")]
+ public int EncryptionKeyDerivationIterations {
+ get {
+ return ((int)(this["EncryptionKeyDerivationIterations"]));
+ }
+ set {
+ this["EncryptionKeyDerivationIterations"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Dynamic")]
+ public string ConDefaultSoundQuality {
+ get {
+ return ((string)(this["ConDefaultSoundQuality"]));
+ }
+ set {
+ this["ConDefaultSoundQuality"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultSoundQuality {
+ get {
+ return ((bool)(this["InhDefaultSoundQuality"]));
+ }
+ set {
+ this["InhDefaultSoundQuality"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0")]
+ public int ConDefaultRDPMinutesToIdleTimeout {
+ get {
+ return ((int)(this["ConDefaultRDPMinutesToIdleTimeout"]));
+ }
+ set {
+ this["ConDefaultRDPMinutesToIdleTimeout"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDPMinutesToIdleTimeout {
+ get {
+ return ((bool)(this["InhDefaultRDPMinutesToIdleTimeout"]));
+ }
+ set {
+ this["InhDefaultRDPMinutesToIdleTimeout"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ConDefaultRDPAlertIdleTimeout {
+ get {
+ return ((bool)(this["ConDefaultRDPAlertIdleTimeout"]));
+ }
+ set {
+ this["ConDefaultRDPAlertIdleTimeout"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultRDPAlertIdleTimeout {
+ get {
+ return ((bool)(this["InhDefaultRDPAlertIdleTimeout"]));
+ }
+ set {
+ this["InhDefaultRDPAlertIdleTimeout"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool InhDefaultCredentialRecord {
+ get {
+ return ((bool)(this["InhDefaultCredentialRecord"]));
+ }
+ set {
+ this["InhDefaultCredentialRecord"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("00000000-0000-0000-0000-000000000000")]
+ public global::System.Guid ConDefaultCredentialRecord {
+ get {
+ return ((global::System.Guid)(this["ConDefaultCredentialRecord"]));
+ }
+ set {
+ this["ConDefaultCredentialRecord"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string LogFilePath {
+ get {
+ return ((string)(this["LogFilePath"]));
+ }
+ set {
+ this["LogFilePath"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool TextLogMessageWriterWriteDebugMsgs {
+ get {
+ return ((bool)(this["TextLogMessageWriterWriteDebugMsgs"]));
+ }
+ set {
+ this["TextLogMessageWriterWriteDebugMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool TextLogMessageWriterWriteInfoMsgs {
+ get {
+ return ((bool)(this["TextLogMessageWriterWriteInfoMsgs"]));
+ }
+ set {
+ this["TextLogMessageWriterWriteInfoMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool TextLogMessageWriterWriteWarningMsgs {
+ get {
+ return ((bool)(this["TextLogMessageWriterWriteWarningMsgs"]));
+ }
+ set {
+ this["TextLogMessageWriterWriteWarningMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool TextLogMessageWriterWriteErrorMsgs {
+ get {
+ return ((bool)(this["TextLogMessageWriterWriteErrorMsgs"]));
+ }
+ set {
+ this["TextLogMessageWriterWriteErrorMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool NotificationPanelWriterWriteDebugMsgs {
+ get {
+ return ((bool)(this["NotificationPanelWriterWriteDebugMsgs"]));
+ }
+ set {
+ this["NotificationPanelWriterWriteDebugMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool NotificationPanelWriterWriteInfoMsgs {
+ get {
+ return ((bool)(this["NotificationPanelWriterWriteInfoMsgs"]));
+ }
+ set {
+ this["NotificationPanelWriterWriteInfoMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool NotificationPanelWriterWriteWarningMsgs {
+ get {
+ return ((bool)(this["NotificationPanelWriterWriteWarningMsgs"]));
+ }
+ set {
+ this["NotificationPanelWriterWriteWarningMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool NotificationPanelWriterWriteErrorMsgs {
+ get {
+ return ((bool)(this["NotificationPanelWriterWriteErrorMsgs"]));
+ }
+ set {
+ this["NotificationPanelWriterWriteErrorMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool PopupMessageWriterWriteDebugMsgs {
+ get {
+ return ((bool)(this["PopupMessageWriterWriteDebugMsgs"]));
+ }
+ set {
+ this["PopupMessageWriterWriteDebugMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool PopupMessageWriterWriteInfoMsgs {
+ get {
+ return ((bool)(this["PopupMessageWriterWriteInfoMsgs"]));
+ }
+ set {
+ this["PopupMessageWriterWriteInfoMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool PopupMessageWriterWriteWarningMsgs {
+ get {
+ return ((bool)(this["PopupMessageWriterWriteWarningMsgs"]));
+ }
+ set {
+ this["PopupMessageWriterWriteWarningMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool PopupMessageWriterWriteErrorMsgs {
+ get {
+ return ((bool)(this["PopupMessageWriterWriteErrorMsgs"]));
+ }
+ set {
+ this["PopupMessageWriterWriteErrorMsgs"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool LogToApplicationDirectory {
+ get {
+ return ((bool)(this["LogToApplicationDirectory"]));
+ }
+ set {
+ this["LogToApplicationDirectory"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("True")]
+ public bool PromptUnlockCredReposOnStartup {
+ get {
+ return ((bool)(this["PromptUnlockCredReposOnStartup"]));
+ }
+ set {
+ this["PromptUnlockCredReposOnStartup"] = value;
+ }
+ }
+
+ [global::System.Configuration.ApplicationScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-" +
+ "TR,zh-CN,zh-TW")]
+ public string SupportedUICultures {
+ get {
+ return ((string)(this["SupportedUICultures"]));
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool ThemingActive {
+ get {
+ return ((bool)(this["ThemingActive"]));
+ }
+ set {
+ this["ThemingActive"] = value;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/mRemoteV1/Settings.cs b/mRemoteV1/Settings.cs
new file mode 100644
index 000000000..3a481982c
--- /dev/null
+++ b/mRemoteV1/Settings.cs
@@ -0,0 +1,32 @@
+using System.Configuration;
+
+namespace mRemoteNG
+{
+
+
+ // This class allows you to handle specific events on the settings class:
+ // The SettingChanging event is raised before a setting's value is changed.
+ // The PropertyChanged event is raised after a setting's value is changed.
+ // The SettingsLoaded event is raised after the setting values are loaded.
+ // The SettingsSaving event is raised before the setting values are saved.
+ [global::System.Configuration.SettingsProviderAttribute(typeof(mRemoteNG.Config.Settings.Providers.ChooseProvider))]
+ internal sealed partial class Settings {
+
+ public Settings() {
+ // // To add event handlers for saving and changing settings, uncomment the lines below:
+ //
+ // this.SettingChanging += this.SettingChangingEventHandler;
+ //
+ // this.SettingsSaving += this.SettingsSavingEventHandler;
+ //
+ }
+
+ private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
+ // Add code to handle the SettingChangingEvent event here.
+ }
+
+ private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
+ // Add code to handle the SettingsSaving event here.
+ }
+ }
+}
diff --git a/mRemoteV1/app.config b/mRemoteV1/app.config
index 2b4bbbfee..3a2d93ad4 100644
--- a/mRemoteV1/app.config
+++ b/mRemoteV1/app.config
@@ -1,798 +1,807 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0, 0
-
-
- 0, 0
-
-
- Normal
-
-
- False
-
-
- True
-
-
-
-
-
- True
-
-
- True
-
-
- True
-
-
- False
-
-
- False
-
-
-
-
-
- True
-
-
- True
-
-
- False
-
-
- False
-
-
- True
-
-
- False
-
-
- False
-
-
- noinfo
-
-
-
-
-
-
-
-
-
-
-
- False
-
-
- True
-
-
- False
-
-
- False
-
-
- False
-
-
-
-
-
- 80
-
-
- False
-
-
-
-
-
-
-
-
-
-
-
- RDP
-
-
- Default Settings
-
-
- False
-
-
- FitToWindow
-
-
- Colors16Bit
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- DoNotPlay
-
-
- 2
-
-
- False
-
-
- False
-
-
- False
-
-
- 0
-
-
- False
-
-
- True
-
-
- 0, 0
-
-
- Bottom
-
-
- True
-
-
- 3, 24
-
-
- Top
-
-
- False
-
-
- False
-
-
-
-
-
-
-
-
-
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- EncrBasic
-
-
- False
-
-
-
-
-
-
-
-
- False
-
-
- False
-
-
- False
-
-
- True
-
-
- False
-
-
- False
-
-
- AuthVNC
-
-
- ColNormal
-
-
- SmartSAspect
-
-
- False
-
-
- CompNone
-
-
- EncHextile
-
-
-
-
-
-
-
-
- 0
-
-
- ProxyNone
-
-
-
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- NoAuth
-
-
- False
-
-
- 5500
-
-
- False
-
-
-
-
-
- IE
-
-
- False
-
-
-
-
-
- False
-
-
- False
-
-
-
-
-
- False
-
-
-
-
-
- False
-
-
- False
-
-
- 14
-
-
- 1980-01-01
-
-
- False
-
-
- Never
-
-
- Yes
-
-
- mRemoteNG
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- 5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- 4
-
-
- mRemoteNG
-
-
- 10
-
-
- {0}.{1:yyyyMMdd-HHmmssffff}.backup
-
-
- False
-
-
- True
-
-
- False
-
-
- False
-
-
- release
-
-
-
-
-
- True
-
-
-
-
-
-
-
-
- True
-
-
-
-
-
- True
-
-
- False
-
-
- False
-
-
- RDP
-
-
- 9/9, 33/8
-
-
- 9/8, 34/8
-
-
- False
-
-
- 20
-
-
- AES
-
-
- GCM
-
-
- 1000
-
-
- Dynamic
-
-
- False
-
-
- 0
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- 00000000-0000-0000-0000-000000000000
-
-
-
-
-
- False
-
-
- True
-
-
- True
-
-
- True
-
-
- False
-
-
- False
-
-
- True
-
-
- True
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- True
-
-
- True
-
-
- False
-
-
-
-
-
-
- /TreeView/Background/Background/@Source
-
-
- /TreeView/Background/Foreground/@Source
-
-
- /TreeView/SelectedItemActive/Background/@Source
-
-
- /TreeView/SelectedItemActive/Foreground/@Source
-
-
- /TreeView/SelectedItemInactive/Background/@Source
-
-
- /TreeView/SelectedItemInactive/Foreground/@Source
-
-
- /Cider/ListBackground/Background/@Source
-
-
- /Cider/ListItem/Foreground/@Source
-
-
- /Cider/ListItem/Background/@Source
-
-
- /Cider/ListItemBorder/Background/@Source
-
-
- /Cider/ListHeader/Background/@Source
-
-
- /Cider/ListHeader/Foreground/@Source
-
-
- /Cider/ListItemSelectedBorder/Background/@Source
-
-
- /Cider/ListItemSelected/Foreground/@Source
-
-
- /Cider/ListItemSelected/Background/@Source
-
-
- /Cider/ListItemDisabled/Foreground/@Source
-
-
- /Cider/ListItemDisabled/Background/@Source
-
-
- /Cider/ListItemDisabledBorder/Background/@Source
-
-
- /CommonControls/Button/Background/@Source
-
-
- /CommonControls/Button/Foreground/@Source
-
-
- /CommonControls/ButtonBorder/Background/@Source
-
-
- /CommonControls/ButtonPressed/Background/@Source
-
-
- /CommonControls/ButtonPressed/Foreground/@Source
-
-
- /CommonControls/ButtonHover/Background/@Source
-
-
- /CommonControls/ButtonHover/Foreground/@Source
-
-
- /TextEditorTextMarkerItems/compilerwarning/Background/@Source
-
-
- /TextEditorTextMarkerItems/compilerwarning/Foreground/@Source
-
-
- /TextEditorTextMarkerItems/compilererror/Background/@Source
-
-
- /TextEditorTextMarkerItems/compilererror/Foreground/@Source
-
-
- /CommonControls/TextBoxBackground/Background/@Source
-
-
- /CommonControls/TextBoxText/Background/@Source
-
-
- /CommonControls/TextBoxBorder/Background/@Source
-
-
- /CommonControls/TextBoxBorderDisabled/Background/@Source
-
-
- /CommonControls/TextBoxBorderFocused/Background/@Source
-
-
- /CommonControls/TextBoxBackgroundDisabled/Background/@Source
-
-
- /CommonControls/TextBoxTextDisabled/Background/@Source
-
-
- /CommonControls/TextBoxBackgroundFocused/Background/@Source
-
-
- /CommonControls/TextBoxTextFocused/Background/@Source
-
-
-
-
- https://mremoteng.org/
-
-
- cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-TR,zh-CN,zh-TW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0, 0
+
+
+ 0, 0
+
+
+ Normal
+
+
+ False
+
+
+ True
+
+
+
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+
+
+
+ True
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ noinfo
+
+
+
+
+
+
+
+
+
+
+
+ False
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+
+
+
+ 80
+
+
+ False
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RDP
+
+
+ Default Settings
+
+
+ False
+
+
+ FitToWindow
+
+
+ Colors16Bit
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ DoNotPlay
+
+
+ 2
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ 0
+
+
+ False
+
+
+ True
+
+
+ 0, 0
+
+
+ Bottom
+
+
+ True
+
+
+ 3, 24
+
+
+ Top
+
+
+ False
+
+
+ False
+
+
+
+
+
+
+
+
+
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ EncrBasic
+
+
+ False
+
+
+
+
+
+
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ AuthVNC
+
+
+ ColNormal
+
+
+ SmartSAspect
+
+
+ False
+
+
+ CompNone
+
+
+ EncHextile
+
+
+
+
+
+
+
+
+ 0
+
+
+ ProxyNone
+
+
+
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ NoAuth
+
+
+ False
+
+
+ 5500
+
+
+ False
+
+
+
+
+
+ IE
+
+
+ False
+
+
+
+
+
+ False
+
+
+ False
+
+
+
+
+
+ False
+
+
+
+
+
+ False
+
+
+ False
+
+
+ 14
+
+
+ 1980-01-01
+
+
+ False
+
+
+ Never
+
+
+ Yes
+
+
+ mRemoteNG
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ 5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ 4
+
+
+ mRemoteNG
+
+
+ 10
+
+
+ {0}.{1:yyyyMMdd-HHmmssffff}.backup
+
+
+ False
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ release
+
+
+
+
+
+ True
+
+
+
+
+
+
+
+
+ True
+
+
+
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ RDP
+
+
+ 9/9, 33/8
+
+
+ 9/8, 34/8
+
+
+ False
+
+
+ 20
+
+
+ AES
+
+
+ GCM
+
+
+ 1000
+
+
+ Dynamic
+
+
+ False
+
+
+ 0
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ 00000000-0000-0000-0000-000000000000
+
+
+
+
+
+ False
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ True
+
+
+ True
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ True
+
+
+ True
+
+
+ False
+
+
+
+
+
+
+ /TreeView/Background/Background/@Source
+
+
+ /TreeView/Background/Foreground/@Source
+
+
+ /TreeView/SelectedItemActive/Background/@Source
+
+
+ /TreeView/SelectedItemActive/Foreground/@Source
+
+
+ /TreeView/SelectedItemInactive/Background/@Source
+
+
+ /TreeView/SelectedItemInactive/Foreground/@Source
+
+
+ /Cider/ListBackground/Background/@Source
+
+
+ /Cider/ListItem/Foreground/@Source
+
+
+ /Cider/ListItem/Background/@Source
+
+
+ /Cider/ListItemBorder/Background/@Source
+
+
+ /Cider/ListHeader/Background/@Source
+
+
+ /Cider/ListHeader/Foreground/@Source
+
+
+ /Cider/ListItemSelectedBorder/Background/@Source
+
+
+ /Cider/ListItemSelected/Foreground/@Source
+
+
+ /Cider/ListItemSelected/Background/@Source
+
+
+ /Cider/ListItemDisabled/Foreground/@Source
+
+
+ /Cider/ListItemDisabled/Background/@Source
+
+
+ /Cider/ListItemDisabledBorder/Background/@Source
+
+
+ /CommonControls/Button/Background/@Source
+
+
+ /CommonControls/Button/Foreground/@Source
+
+
+ /CommonControls/ButtonBorder/Background/@Source
+
+
+ /CommonControls/ButtonPressed/Background/@Source
+
+
+ /CommonControls/ButtonPressed/Foreground/@Source
+
+
+ /CommonControls/ButtonHover/Background/@Source
+
+
+ /CommonControls/ButtonHover/Foreground/@Source
+
+
+ /TextEditorTextMarkerItems/compilerwarning/Background/@Source
+
+
+ /TextEditorTextMarkerItems/compilerwarning/Foreground/@Source
+
+
+ /TextEditorTextMarkerItems/compilererror/Background/@Source
+
+
+ /TextEditorTextMarkerItems/compilererror/Foreground/@Source
+
+
+ /CommonControls/TextBoxBackground/Background/@Source
+
+
+ /CommonControls/TextBoxText/Background/@Source
+
+
+ /CommonControls/TextBoxBorder/Background/@Source
+
+
+ /CommonControls/TextBoxBorderDisabled/Background/@Source
+
+
+ /CommonControls/TextBoxBorderFocused/Background/@Source
+
+
+ /CommonControls/TextBoxBackgroundDisabled/Background/@Source
+
+
+ /CommonControls/TextBoxTextDisabled/Background/@Source
+
+
+ /CommonControls/TextBoxBackgroundFocused/Background/@Source
+
+
+ /CommonControls/TextBoxTextFocused/Background/@Source
+
+
+
+
+ https://mremoteng.org/
+
+
+ cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-TR,zh-CN,zh-TW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mRemoteV1/mRemoteV1.csproj b/mRemoteV1/mRemoteV1.csproj
index 4dab5c4be..0b07c332f 100644
--- a/mRemoteV1/mRemoteV1.csproj
+++ b/mRemoteV1/mRemoteV1.csproj
@@ -1,1517 +1,1518 @@
-
-
-
- Debug
- AnyCPU
- 9.0.30729
- 2.0
- {4934A491-40BC-4E5B-9166-EA1169A220F6}
- WinExe
- mRemoteNG.App.ProgramRoot
- mRemoteNG
- mRemoteNG
- WindowsForms
- On
-
-
- 3.5
-
-
- false
- Properties\app.manifest
- Resources\Icons\mRemote_Icon.ico
- Off
- B249710A6BB08171F8E75082CF2355AE2890911A
- mRemoteV1_TemporaryKey.pfx
- true
- false
- v4.6
-
-
-
- True
- publish\
- true
- Disk
- false
- Foreground
- 7
- Days
- false
- false
- true
- 1
- 1.64.0.%2a
- false
- true
- true
-
-
-
- References\ADTree.dll
-
-
- ..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll
-
-
- ..\packages\Geckofx45.45.0.32\lib\net45\Geckofx-Core.dll
-
-
- ..\packages\Geckofx45.45.0.32\lib\net45\Geckofx-Winforms.dll
-
-
- ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll
-
-
-
- False
- References\MagicLibrary.dll
- True
-
-
- ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll
-
-
- ..\packages\SSH.NET.2016.0.0\lib\net40\Renci.SshNet.dll
-
-
-
-
-
-
-
-
-
-
-
-
- False
- References\VncSharp.dll
-
-
- ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll
-
-
- ..\packages\DockPanelSuite.ThemeVS2003.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2003.dll
-
-
- ..\packages\DockPanelSuite.ThemeVS2012.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2012.dll
-
-
- ..\packages\DockPanelSuite.ThemeVS2013.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2013.dll
-
-
- ..\packages\DockPanelSuite.ThemeVS2015.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- True
- True
- ColorMapTheme.resx
-
-
-
-
-
-
-
-
-
- Component
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- ConnectionTree.cs
-
-
- Component
-
-
- CredentialRecordComboBox.cs
-
-
-
- Component
-
-
- CredentialRecordListBox.cs
-
-
- UserControl
-
-
- CredentialRecordListView.cs
-
-
- UserControl
-
-
- CredentialRepositoryListView.cs
-
-
- Component
-
-
- Component
-
-
- FilteredPropertyGrid.cs
-
-
-
-
- Component
-
-
-
- UserControl
-
-
-
- Component
-
-
-
- UserControl
-
-
- NewPasswordWithVerification.cs
-
-
-
-
- UserControl
-
-
-
- Component
-
-
- Component
-
-
- Component
-
-
- SecureTextBox.cs
-
-
-
-
- Component
-
-
-
-
-
- Form
-
-
- frmOptions.cs
-
-
-
-
- AdvancedPage.cs
-
-
- UserControl
-
-
- AppearancePage.cs
-
-
- UserControl
-
-
- UserControl
-
-
- CredentialsPage.cs
-
-
- UserControl
-
-
- NotificationsPage.cs
-
-
- ConnectionsPage.cs
-
-
- UserControl
-
-
- UserControl
-
-
- UserControl
-
-
- SecurityPage.cs
-
-
- SqlServerPage.cs
-
-
- UserControl
-
-
- StartupExitPage.cs
-
-
- UserControl
-
-
- TabsPanelsPage.cs
-
-
- UserControl
-
-
- ThemePage.cs
-
-
- UserControl
-
-
- UpdatesPage.cs
-
-
- UserControl
-
-
-
-
-
-
-
-
-
-
-
- InterfaceControl.cs
-
-
- Component
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- frmChoosePanel.cs
-
-
- Form
-
-
- FrmMain.cs
-
-
- Form
-
-
- PasswordForm.cs
-
-
- Form
-
-
- True
- True
- Language.resx
-
-
-
-
- True
- True
- Resources.resx
-
-
- True
- True
- Settings.settings
-
-
-
-
-
-
-
-
- ReconnectGroup.cs
-
-
- UserControl
-
-
-
-
-
-
-
-
- Component
-
-
- Component
-
-
- Component
-
-
-
- Component
-
-
- Component
-
-
-
- Component
-
-
- CommandButton.cs
-
-
-
- Form
-
-
- frmTaskDialog.cs
-
-
- Form
-
-
- ActiveDirectoryImportWindow.cs
-
-
- Form
-
-
- Form
-
-
- Form
-
-
- Form
-
-
- Form
-
-
- ConnectionWindow.cs
-
-
- Form
-
-
- ExportForm.cs
-
-
- ErrorAndInfoWindow.cs
-
-
- ExternalToolsWindow.cs
-
-
- Form
-
-
- Form
-
-
-
- PortScanWindow.cs
-
-
- Form
-
-
- Form
-
-
- Form
-
-
- Form
-
-
- ConnectionTreeWindow.cs
-
-
- Form
-
-
-
- Form
-
-
- UpdateWindow.cs
-
-
- Form
-
-
-
-
-
- Designer
-
-
-
-
- ResXFileCodeGenerator
- ColorMapTheme.Designer.cs
- mRemoteNG
-
-
- CredentialRecordListView.cs
-
-
- CredentialRepositoryListView.cs
-
-
- IPTextBox.cs
-
-
- NewPasswordWithVerification.cs
-
-
- frmChoosePanel.cs
- Designer
-
-
- FrmMain.cs
- Designer
-
-
- frmOptions.cs
-
-
- CredentialsPage.cs
-
-
- NotificationsPage.cs
-
-
- OptionsPage.cs
-
-
- SecurityPage.cs
-
-
- PasswordForm.cs
- Designer
-
-
- AdvancedPage.cs
-
-
- AppearancePage.cs
-
-
- ConnectionsPage.cs
-
-
- SqlServerPage.cs
-
-
- StartupExitPage.cs
-
-
- TabsPanelsPage.cs
-
-
- ThemePage.cs
-
-
- UpdatesPage.cs
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
-
- Designer
-
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- ResXFileCodeGenerator
- Language.Designer.cs
- mRemoteNG
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
- mRemoteNG
- Designer
-
-
- ReconnectGroup.cs
- Designer
-
-
- frmTaskDialog.cs
-
-
- AboutWindow.cs
- Designer
-
-
- ActiveDirectoryImportWindow.cs
- Designer
-
-
- ComponentsCheckWindow.cs
- Designer
-
-
- Designer
- ConfigWindow.cs
-
-
- ConnectionWindow.cs
- Designer
-
-
- ErrorAndInfoWindow.cs
- Designer
-
-
- ExternalToolsWindow.cs
- Designer
-
-
- HelpWindow.cs
- Designer
-
-
- PortScanWindow.cs
- Designer
-
-
- ExportForm.cs
- Designer
-
-
- ScreenshotManagerWindow.cs
- Designer
-
-
- SSHTransferWindow.cs
- Designer
-
-
- ConnectionTreeWindow.cs
- Designer
-
-
- UltraVNCWindow.cs
- Designer
-
-
- UpdateWindow.cs
- Designer
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
-
-
-
-
-
-
-
-
-
-
-
- mRemoteNG
- SettingsSingleFileGenerator
- Settings.Designer.cs
- Designer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- False
- .NET Framework 3.5 SP1 Client Profile
- false
-
-
- False
- .NET Framework 2.0 %28x86%29
- true
-
-
- False
- .NET Framework 3.0 %28x86%29
- false
-
-
- False
- .NET Framework 3.5
- false
-
-
- False
- .NET Framework 3.5 SP1
- false
-
-
-
-
-
- {8C11EFA1-92C3-11D1-BC1E-00C04FA31489}
- 1
- 0
- 0
- aximp
- False
-
-
- {238F6F80-B8B4-11CF-8771-00A024541EE3}
- 2
- 7
- 0
- aximp
- False
-
-
- {8C11EFA1-92C3-11D1-BC1E-00C04FA31489}
- 1
- 0
- 0
- tlbimp
- False
-
-
- {238F6F80-B8B4-11CF-8771-00A024541EE3}
- 2
- 7
- 0
- tlbimp
- False
-
-
-
-
-
-
+
+
+
+ Debug
+ AnyCPU
+ 9.0.30729
+ 2.0
+ {4934A491-40BC-4E5B-9166-EA1169A220F6}
+ WinExe
+ mRemoteNG.App.ProgramRoot
+ mRemoteNG
+ mRemoteNG
+ WindowsForms
+ On
+
+
+ 3.5
+
+
+ false
+ Properties\app.manifest
+ Resources\Icons\mRemote_Icon.ico
+ Off
+ B249710A6BB08171F8E75082CF2355AE2890911A
+ mRemoteV1_TemporaryKey.pfx
+ true
+ false
+ v4.6
+
+
+
+ True
+ publish\
+ true
+ Disk
+ false
+ Foreground
+ 7
+ Days
+ false
+ false
+ true
+ 1
+ 1.64.0.%2a
+ false
+ true
+ true
+
+
+
+ References\ADTree.dll
+
+
+ ..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll
+
+
+ ..\packages\Geckofx45.45.0.32\lib\net45\Geckofx-Core.dll
+
+
+ ..\packages\Geckofx45.45.0.32\lib\net45\Geckofx-Winforms.dll
+
+
+ ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll
+
+
+
+ False
+ References\MagicLibrary.dll
+ True
+
+
+ ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll
+
+
+ ..\packages\SSH.NET.2016.0.0\lib\net40\Renci.SshNet.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+ References\VncSharp.dll
+
+
+ ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll
+
+
+ ..\packages\DockPanelSuite.ThemeVS2003.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2003.dll
+
+
+ ..\packages\DockPanelSuite.ThemeVS2012.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2012.dll
+
+
+ ..\packages\DockPanelSuite.ThemeVS2013.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2013.dll
+
+
+ ..\packages\DockPanelSuite.ThemeVS2015.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ ColorMapTheme.resx
+
+
+
+
+
+
+
+
+
+ Component
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ ConnectionTree.cs
+
+
+ Component
+
+
+ CredentialRecordComboBox.cs
+
+
+
+ Component
+
+
+ CredentialRecordListBox.cs
+
+
+ UserControl
+
+
+ CredentialRecordListView.cs
+
+
+ UserControl
+
+
+ CredentialRepositoryListView.cs
+
+
+ Component
+
+
+ Component
+
+
+ FilteredPropertyGrid.cs
+
+
+
+
+ Component
+
+
+
+ UserControl
+
+
+
+ Component
+
+
+
+ UserControl
+
+
+ NewPasswordWithVerification.cs
+
+
+
+
+ UserControl
+
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+ SecureTextBox.cs
+
+
+
+
+ Component
+
+
+
+
+
+ Form
+
+
+ frmOptions.cs
+
+
+
+
+ AdvancedPage.cs
+
+
+ UserControl
+
+
+ AppearancePage.cs
+
+
+ UserControl
+
+
+ UserControl
+
+
+ CredentialsPage.cs
+
+
+ UserControl
+
+
+ NotificationsPage.cs
+
+
+ ConnectionsPage.cs
+
+
+ UserControl
+
+
+ UserControl
+
+
+ UserControl
+
+
+ SecurityPage.cs
+
+
+ SqlServerPage.cs
+
+
+ UserControl
+
+
+ StartupExitPage.cs
+
+
+ UserControl
+
+
+ TabsPanelsPage.cs
+
+
+ UserControl
+
+
+ ThemePage.cs
+
+
+ UserControl
+
+
+ UpdatesPage.cs
+
+
+ UserControl
+
+
+
+
+
+
+
+
+
+
+
+ InterfaceControl.cs
+
+
+ Component
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ frmChoosePanel.cs
+
+
+ Form
+
+
+ FrmMain.cs
+
+
+ Form
+
+
+ PasswordForm.cs
+
+
+ Form
+
+
+ True
+ True
+ Language.resx
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ True
+ Settings.settings
+
+
+
+
+
+
+
+
+ ReconnectGroup.cs
+
+
+ UserControl
+
+
+
+
+
+
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
+
+
+ Component
+
+
+ Component
+
+
+
+ Component
+
+
+ CommandButton.cs
+
+
+
+ Form
+
+
+ frmTaskDialog.cs
+
+
+ Form
+
+
+ ActiveDirectoryImportWindow.cs
+
+
+ Form
+
+
+ Form
+
+
+ Form
+
+
+ Form
+
+
+ Form
+
+
+ ConnectionWindow.cs
+
+
+ Form
+
+
+ ExportForm.cs
+
+
+ ErrorAndInfoWindow.cs
+
+
+ ExternalToolsWindow.cs
+
+
+ Form
+
+
+ Form
+
+
+
+ PortScanWindow.cs
+
+
+ Form
+
+
+ Form
+
+
+ Form
+
+
+ Form
+
+
+ ConnectionTreeWindow.cs
+
+
+ Form
+
+
+
+ Form
+
+
+ UpdateWindow.cs
+
+
+ Form
+
+
+
+
+
+ Designer
+
+
+
+
+ ResXFileCodeGenerator
+ ColorMapTheme.Designer.cs
+ mRemoteNG
+
+
+ CredentialRecordListView.cs
+
+
+ CredentialRepositoryListView.cs
+
+
+ IPTextBox.cs
+
+
+ NewPasswordWithVerification.cs
+
+
+ frmChoosePanel.cs
+ Designer
+
+
+ FrmMain.cs
+ Designer
+
+
+ frmOptions.cs
+
+
+ CredentialsPage.cs
+
+
+ NotificationsPage.cs
+
+
+ OptionsPage.cs
+
+
+ SecurityPage.cs
+
+
+ PasswordForm.cs
+ Designer
+
+
+ AdvancedPage.cs
+
+
+ AppearancePage.cs
+
+
+ ConnectionsPage.cs
+
+
+ SqlServerPage.cs
+
+
+ StartupExitPage.cs
+
+
+ TabsPanelsPage.cs
+
+
+ ThemePage.cs
+
+
+ UpdatesPage.cs
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+
+ Designer
+
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ ResXFileCodeGenerator
+ Language.Designer.cs
+ mRemoteNG
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ mRemoteNG
+ Designer
+
+
+ ReconnectGroup.cs
+ Designer
+
+
+ frmTaskDialog.cs
+
+
+ AboutWindow.cs
+ Designer
+
+
+ ActiveDirectoryImportWindow.cs
+ Designer
+
+
+ ComponentsCheckWindow.cs
+ Designer
+
+
+ Designer
+ ConfigWindow.cs
+
+
+ ConnectionWindow.cs
+ Designer
+
+
+ ErrorAndInfoWindow.cs
+ Designer
+
+
+ ExternalToolsWindow.cs
+ Designer
+
+
+ HelpWindow.cs
+ Designer
+
+
+ PortScanWindow.cs
+ Designer
+
+
+ ExportForm.cs
+ Designer
+
+
+ ScreenshotManagerWindow.cs
+ Designer
+
+
+ SSHTransferWindow.cs
+ Designer
+
+
+ ConnectionTreeWindow.cs
+ Designer
+
+
+ UltraVNCWindow.cs
+ Designer
+
+
+ UpdateWindow.cs
+ Designer
+
+
+
+
+
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+
+
+
+
+
+
+
+
+
+
+
+ mRemoteNG
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+ Designer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+ .NET Framework 3.5 SP1 Client Profile
+ false
+
+
+ False
+ .NET Framework 2.0 %28x86%29
+ true
+
+
+ False
+ .NET Framework 3.0 %28x86%29
+ false
+
+
+ False
+ .NET Framework 3.5
+ false
+
+
+ False
+ .NET Framework 3.5 SP1
+ false
+
+
+
+
+
+ {8C11EFA1-92C3-11D1-BC1E-00C04FA31489}
+ 1
+ 0
+ 0
+ aximp
+ False
+
+
+ {238F6F80-B8B4-11CF-8771-00A024541EE3}
+ 2
+ 7
+ 0
+ aximp
+ False
+
+
+ {8C11EFA1-92C3-11D1-BC1E-00C04FA31489}
+ 1
+ 0
+ 0
+ tlbimp
+ False
+
+
+ {238F6F80-B8B4-11CF-8771-00A024541EE3}
+ 2
+ 7
+ 0
+ tlbimp
+ False
+
+
+
+
+
+
:: When passing paths to powershell scripts, check if the path ends with a backslash "\"
:: If it does, then the backslash may be interpreted as an escape character. Add another backslash to cancel the first one.
@@ -1524,74 +1525,74 @@ set certPath=$(CertPath)
set certPassword=$(CertPassword)
:: Call the post build powershell script
-powershell.exe -ExecutionPolicy Bypass -File "%25psScriptsDir%25\postbuild_mremotev1.ps1" -SolutionDir "%25solutionDir%25" -TargetDir "%25targetDir%25" -TargetFileName "mRemoteNG.exe" -ConfigurationName "%25buildenv%25" -CertificatePath "%25certPath%25" -CertificatePassword "%25certPassword%25" -ExcludeFromSigning "PuTTYNG.exe"
-
-
- true
- true
- true
- bin\Debug\
- DEBUG
- 1591,660,661
- full
- x86
- false
- MinimumRecommendedRules.ruleset
- false
-
-
- false
- true
- bin\Release\
- 1591,660,661
- none
- x86
- AllRules.ruleset
- 1
- false
- false
-
-
- false
- true
- bin\Release Portable\
- PORTABLE
- 1591,660,661
- none
- x86
- false
- MinimumRecommendedRules.ruleset
- false
-
-
- true
- true
- true
- bin\Debug Portable\
- DEBUG;PORTABLE
- 1591,660,661,618
- full
- x86
- false
- MinimumRecommendedRules.ruleset
- false
-
+powershell.exe -ExecutionPolicy Bypass -File "%25psScriptsDir%25\postbuild_mremotev1.ps1" -SolutionDir "%25solutionDir%25" -TargetDir "%25targetDir%25" -TargetFileName "mRemoteNG.exe" -ConfigurationName "%25buildenv%25" -CertificatePath "%25certPath%25" -CertificatePassword "%25certPassword%25" -ExcludeFromSigning "PuTTYNG.exe"
+
+
+ true
+ true
+ true
+ bin\Debug\
+ DEBUG
+ 1591,660,661
+ full
+ x86
+ false
+ MinimumRecommendedRules.ruleset
+ false
+
+
+ false
+ true
+ bin\Release\
+ 1591,660,661
+ none
+ x86
+ AllRules.ruleset
+ 1
+ false
+ false
+
+
+ false
+ true
+ bin\Release Portable\
+ PORTABLE
+ 1591,660,661
+ none
+ x86
+ false
+ MinimumRecommendedRules.ruleset
+ false
+
+
+ true
+ true
+ true
+ bin\Debug Portable\
+ DEBUG;PORTABLE
+ 1591,660,661,618
+ full
+ x86
+ false
+ MinimumRecommendedRules.ruleset
+ false
+
-
-
- echo $(ConfigurationName) > buildenv.tmp
-
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
+ -->
+
+
+ echo $(ConfigurationName) > buildenv.tmp
+
+
+
+
+ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
+
+
+
\ No newline at end of file