├── LICENSE ├── README.md ├── Ultimate Settings Panel.sln ├── Ultimate Settings Panel ├── About.Designer.cs ├── About.cs ├── About.resx ├── App.config ├── GoogleAnalyticsApi.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Bug_50px.png │ ├── Close32px.png │ ├── Facebook_32px.png │ ├── Google_32px.png │ ├── Instagram_32px.png │ ├── Line_32px.png │ ├── Pinterest_32px.png │ ├── TGH Profile Image.jpg │ ├── Twitter_32px.png │ ├── WordPress_32px.png │ ├── YouTube 2_32px.png │ ├── github-icon.png │ └── updates.png ├── Settings.cs ├── Settings │ ├── MSEdge.cs │ ├── checkforupdates.cs │ ├── chrome.cs │ ├── cmdexport.cs │ ├── controlpanel.cs │ ├── firefox.cs │ ├── general.cs │ ├── internetexplorer.cs │ ├── outlook.cs │ ├── powershell.cs │ ├── serveradmin.cs │ ├── shutdown.cs │ ├── tricks.cs │ └── windows.cs ├── USP.ico ├── Ultimate Settings Panel.csproj ├── Ultimate Settings Panel.csproj.user ├── app.manifest ├── cmdoutput.Designer.cs ├── cmdoutput.cs ├── cmdoutput.resx └── packages.config └── packages ├── MahApps.Metro.IconPacks.Modern.1.7.1 ├── MahApps.Metro.IconPacks.Modern.1.7.1.nupkg └── lib │ ├── net40 │ ├── MahApps.Metro.IconPacks.Modern.XML │ ├── MahApps.Metro.IconPacks.Modern.dll │ └── MahApps.Metro.IconPacks.Modern.pdb │ ├── net45 │ ├── MahApps.Metro.IconPacks.Modern.XML │ ├── MahApps.Metro.IconPacks.Modern.dll │ └── MahApps.Metro.IconPacks.Modern.pdb │ ├── net46 │ ├── MahApps.Metro.IconPacks.Modern.XML │ ├── MahApps.Metro.IconPacks.Modern.dll │ └── MahApps.Metro.IconPacks.Modern.pdb │ └── uap10.0 │ ├── MahApps.Metro.IconPacks.Core.dll │ ├── MahApps.Metro.IconPacks.Core.pdb │ ├── MahApps.Metro.IconPacks.Core.pri │ ├── MahApps.Metro.IconPacks.Core.xml │ ├── MahApps.Metro.IconPacks.Core │ ├── Converter │ │ └── Converters.xaml │ └── MahApps.Metro.IconPacks.Core.xr.xml │ ├── MahApps.Metro.IconPacks.Modern.XML │ ├── MahApps.Metro.IconPacks.Modern.dll │ ├── MahApps.Metro.IconPacks.Modern.pdb │ ├── MahApps.Metro.IconPacks.Modern.pri │ └── MahApps.Metro.IconPacks.Modern │ └── Themes │ ├── Generic.xaml │ └── PackIconModern.xaml ├── MetroFramework.1.2.0.3 ├── Content │ └── MetroFramework.txt ├── MetroFramework.1.2.0.3.nupkg └── README.TXT ├── MetroFramework.Design.1.2.0.3 ├── MetroFramework.Design.1.2.0.3.nupkg ├── README.TXT ├── Tools │ └── install.ps1 └── lib │ └── net40 │ └── MetroFramework.Design.dll ├── MetroFramework.Fonts.1.2.0.3 ├── MetroFramework.Fonts.1.2.0.3.nupkg ├── README.TXT └── lib │ └── net40 │ └── MetroFramework.Fonts.dll ├── MetroFramework.RunTime.1.2.0.3 ├── MetroFramework.RunTime.1.2.0.3.nupkg ├── README.TXT └── lib │ └── net40-Client │ └── MetroFramework.dll └── MetroModernUI.1.4.0.0 ├── MetroModernUI.1.4.0.0.nupkg └── lib └── net ├── MetroFramework.Design.dll ├── MetroFramework.Fonts.dll └── MetroFramework.dll /README.md: -------------------------------------------------------------------------------- 1 | # ultimate-settings-panel 2 | Enhanced Windows Control Panel. 3 | 4 | # Version 5 | 6.6 - March 200 6 | - Minor Code Tidy Up 7 | - Minor Bug Fixes 8 | - Slight GUI design change. 9 | -------------------------------------------------------------------------------- /Ultimate Settings Panel.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26228.9 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ultimate Settings Panel", "Ultimate Settings Panel\Ultimate Settings Panel.csproj", "{26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|x64 = Debug|x64 12 | Debug|x86 = Debug|x86 13 | Release|Any CPU = Release|Any CPU 14 | Release|x64 = Release|x64 15 | Release|x86 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 18 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Debug|Any CPU.ActiveCfg = Release|Any CPU 19 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Debug|Any CPU.Build.0 = Release|Any CPU 20 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Debug|x64.ActiveCfg = Debug|x64 21 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Debug|x64.Build.0 = Debug|x64 22 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Debug|x86.ActiveCfg = Debug|x86 23 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Debug|x86.Build.0 = Debug|x86 24 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Release|Any CPU.Build.0 = Release|Any CPU 26 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Release|x64.ActiveCfg = Release|x64 27 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Release|x64.Build.0 = Release|x64 28 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Release|x86.ActiveCfg = Release|x86 29 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8}.Release|x86.Build.0 = Release|x86 30 | EndGlobalSection 31 | GlobalSection(SolutionProperties) = preSolution 32 | HideSolutionNode = FALSE 33 | EndGlobalSection 34 | GlobalSection(ExtensibilityGlobals) = postSolution 35 | SolutionGuid = {23E80535-E860-4992-9EF0-A4B85CF5788F} 36 | EndGlobalSection 37 | EndGlobal 38 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/About.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ultimate_Settings_Panel 2 | { 3 | partial class About 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | protected override void Dispose(bool disposing) 14 | { 15 | if (disposing && (components != null)) 16 | { 17 | components.Dispose(); 18 | } 19 | base.Dispose(disposing); 20 | } 21 | 22 | #region Windows Form Designer generated code 23 | 24 | /// 25 | /// Required method for Designer support - do not modify 26 | /// the contents of this method with the code editor. 27 | /// 28 | private void InitializeComponent() 29 | { 30 | this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); 31 | this.logoPictureBox = new System.Windows.Forms.PictureBox(); 32 | this.labelProductName = new System.Windows.Forms.Label(); 33 | this.labelVersion = new System.Windows.Forms.Label(); 34 | this.labelCopyright = new System.Windows.Forms.Label(); 35 | this.labelCompanyName = new System.Windows.Forms.Label(); 36 | this.textBoxDescription = new System.Windows.Forms.TextBox(); 37 | this.okButton = new System.Windows.Forms.Button(); 38 | this.tableLayoutPanel.SuspendLayout(); 39 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit(); 40 | this.SuspendLayout(); 41 | // 42 | // tableLayoutPanel 43 | // 44 | this.tableLayoutPanel.ColumnCount = 2; 45 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); 46 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F)); 47 | this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0); 48 | this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0); 49 | this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1); 50 | this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2); 51 | this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3); 52 | this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4); 53 | this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5); 54 | this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; 55 | this.tableLayoutPanel.Location = new System.Drawing.Point(12, 65); 56 | this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 57 | this.tableLayoutPanel.Name = "tableLayoutPanel"; 58 | this.tableLayoutPanel.RowCount = 6; 59 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 60 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 61 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 62 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 63 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); 64 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 65 | this.tableLayoutPanel.Size = new System.Drawing.Size(636, 297); 66 | this.tableLayoutPanel.TabIndex = 0; 67 | // 68 | // logoPictureBox 69 | // 70 | this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; 71 | this.logoPictureBox.Image = global::Ultimate_Settings_Panel.Properties.Resources.TGH_Profile_Image; 72 | this.logoPictureBox.Location = new System.Drawing.Point(4, 3); 73 | this.logoPictureBox.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 74 | this.logoPictureBox.Name = "logoPictureBox"; 75 | this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6); 76 | this.logoPictureBox.Size = new System.Drawing.Size(201, 291); 77 | this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; 78 | this.logoPictureBox.TabIndex = 12; 79 | this.logoPictureBox.TabStop = false; 80 | // 81 | // labelProductName 82 | // 83 | this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill; 84 | this.labelProductName.Location = new System.Drawing.Point(217, 0); 85 | this.labelProductName.Margin = new System.Windows.Forms.Padding(8, 0, 4, 0); 86 | this.labelProductName.MaximumSize = new System.Drawing.Size(0, 18); 87 | this.labelProductName.Name = "labelProductName"; 88 | this.labelProductName.Size = new System.Drawing.Size(415, 18); 89 | this.labelProductName.TabIndex = 19; 90 | this.labelProductName.Text = "Product Name"; 91 | this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 92 | // 93 | // labelVersion 94 | // 95 | this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill; 96 | this.labelVersion.Location = new System.Drawing.Point(217, 29); 97 | this.labelVersion.Margin = new System.Windows.Forms.Padding(8, 0, 4, 0); 98 | this.labelVersion.MaximumSize = new System.Drawing.Size(0, 18); 99 | this.labelVersion.Name = "labelVersion"; 100 | this.labelVersion.Size = new System.Drawing.Size(415, 18); 101 | this.labelVersion.TabIndex = 0; 102 | this.labelVersion.Text = "Version"; 103 | this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 104 | // 105 | // labelCopyright 106 | // 107 | this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill; 108 | this.labelCopyright.Location = new System.Drawing.Point(217, 58); 109 | this.labelCopyright.Margin = new System.Windows.Forms.Padding(8, 0, 4, 0); 110 | this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 18); 111 | this.labelCopyright.Name = "labelCopyright"; 112 | this.labelCopyright.Size = new System.Drawing.Size(415, 18); 113 | this.labelCopyright.TabIndex = 21; 114 | this.labelCopyright.Text = "Copyright"; 115 | this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 116 | // 117 | // labelCompanyName 118 | // 119 | this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill; 120 | this.labelCompanyName.Location = new System.Drawing.Point(217, 87); 121 | this.labelCompanyName.Margin = new System.Windows.Forms.Padding(8, 0, 4, 0); 122 | this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 18); 123 | this.labelCompanyName.Name = "labelCompanyName"; 124 | this.labelCompanyName.Size = new System.Drawing.Size(415, 18); 125 | this.labelCompanyName.TabIndex = 22; 126 | this.labelCompanyName.Text = "Company Name"; 127 | this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 128 | // 129 | // textBoxDescription 130 | // 131 | this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill; 132 | this.textBoxDescription.Location = new System.Drawing.Point(217, 119); 133 | this.textBoxDescription.Margin = new System.Windows.Forms.Padding(8, 3, 4, 3); 134 | this.textBoxDescription.Multiline = true; 135 | this.textBoxDescription.Name = "textBoxDescription"; 136 | this.textBoxDescription.ReadOnly = true; 137 | this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; 138 | this.textBoxDescription.Size = new System.Drawing.Size(415, 142); 139 | this.textBoxDescription.TabIndex = 23; 140 | this.textBoxDescription.TabStop = false; 141 | this.textBoxDescription.Text = "Description"; 142 | // 143 | // okButton 144 | // 145 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 146 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 147 | this.okButton.Location = new System.Drawing.Point(532, 269); 148 | this.okButton.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 149 | this.okButton.Name = "okButton"; 150 | this.okButton.Size = new System.Drawing.Size(100, 25); 151 | this.okButton.TabIndex = 24; 152 | this.okButton.Text = "&OK"; 153 | // 154 | // About 155 | // 156 | this.AcceptButton = this.okButton; 157 | this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 14F); 158 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 159 | this.ClientSize = new System.Drawing.Size(660, 372); 160 | this.Controls.Add(this.tableLayoutPanel); 161 | this.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 162 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 163 | this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 164 | this.MaximizeBox = false; 165 | this.MinimizeBox = false; 166 | this.Name = "About"; 167 | this.Padding = new System.Windows.Forms.Padding(12, 65, 12, 10); 168 | this.ShadowType = MetroFramework.Forms.MetroFormShadowType.AeroShadow; 169 | this.ShowIcon = false; 170 | this.ShowInTaskbar = false; 171 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 172 | this.Text = "About"; 173 | this.tableLayoutPanel.ResumeLayout(false); 174 | this.tableLayoutPanel.PerformLayout(); 175 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit(); 176 | this.ResumeLayout(false); 177 | 178 | } 179 | 180 | #endregion 181 | 182 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; 183 | private System.Windows.Forms.PictureBox logoPictureBox; 184 | private System.Windows.Forms.Label labelProductName; 185 | private System.Windows.Forms.Label labelVersion; 186 | private System.Windows.Forms.Label labelCopyright; 187 | private System.Windows.Forms.Label labelCompanyName; 188 | private System.Windows.Forms.TextBox textBoxDescription; 189 | private System.Windows.Forms.Button okButton; 190 | } 191 | } 192 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/About.cs: -------------------------------------------------------------------------------- 1 | using MetroFramework.Forms; 2 | using System; 3 | using System.Reflection; 4 | 5 | namespace Ultimate_Settings_Panel 6 | { 7 | partial class About : MetroForm 8 | { 9 | public About() 10 | { 11 | InitializeComponent(); 12 | this.Refresh(); 13 | this.Text = String.Format("About {0}", AssemblyTitle); 14 | this.labelProductName.Text = AssemblyProduct; 15 | this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion); 16 | this.labelCopyright.Text = AssemblyCopyright; 17 | this.labelCompanyName.Text = AssemblyCompany; 18 | this.textBoxDescription.Text = AssemblyDescription; 19 | } 20 | 21 | #region Assembly Attribute Accessors 22 | 23 | public string AssemblyTitle 24 | { 25 | get 26 | { 27 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); 28 | if (attributes.Length > 0) 29 | { 30 | AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; 31 | if (titleAttribute.Title != "") 32 | { 33 | return titleAttribute.Title; 34 | } 35 | } 36 | return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); 37 | } 38 | } 39 | 40 | public string AssemblyVersion 41 | { 42 | get 43 | { 44 | return Assembly.GetExecutingAssembly().GetName().Version.ToString(); 45 | } 46 | } 47 | 48 | public string AssemblyDescription 49 | { 50 | get 51 | { 52 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); 53 | if (attributes.Length == 0) 54 | { 55 | return ""; 56 | } 57 | return ((AssemblyDescriptionAttribute)attributes[0]).Description; 58 | } 59 | } 60 | 61 | public string AssemblyProduct 62 | { 63 | get 64 | { 65 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); 66 | if (attributes.Length == 0) 67 | { 68 | return ""; 69 | } 70 | return ((AssemblyProductAttribute)attributes[0]).Product; 71 | } 72 | } 73 | 74 | public string AssemblyCopyright 75 | { 76 | get 77 | { 78 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); 79 | if (attributes.Length == 0) 80 | { 81 | return ""; 82 | } 83 | return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; 84 | } 85 | } 86 | 87 | public string AssemblyCompany 88 | { 89 | get 90 | { 91 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 92 | if (attributes.Length == 0) 93 | { 94 | return ""; 95 | } 96 | return ((AssemblyCompanyAttribute)attributes[0]).Company; 97 | } 98 | } 99 | #endregion 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/About.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Default 15 | 16 | 17 | Default 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/GoogleAnalyticsApi.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Net; 6 | using System.Text; 7 | using System.Web; 8 | using System.Windows.Forms; 9 | 10 | namespace Ultimate_Settings_Panel 11 | { 12 | public class GoogleAnalyticsApi 13 | { 14 | public static void TrackEvent(string category, string action, string label, int? value = null) 15 | { 16 | Track(HitType.@event, category, action, label, value); 17 | } 18 | 19 | public static void TrackPageview(string category, string action, string label, int? value = null) 20 | { 21 | Track(HitType.@pageview, category, action, label, value); 22 | } 23 | 24 | private static void Track(HitType type, string category, string action, string label, 25 | int? value = null) 26 | { 27 | if (string.IsNullOrEmpty(category)) throw new ArgumentNullException("category"); 28 | if (string.IsNullOrEmpty(action)) throw new ArgumentNullException("action"); 29 | 30 | var request = (HttpWebRequest) WebRequest.Create("http://www.google-analytics.com/collect"); 31 | request.Method = "POST"; 32 | 33 | // the request body we want to send 34 | var postData = new Dictionary 35 | { 36 | { "v", "1" }, 37 | { "tid", "UA-33229990-32" }, 38 | { "cid", Guid.NewGuid().ToString()}, 39 | { "t", type.ToString() }, 40 | { "ec", category }, 41 | { "ea", action }, 42 | }; 43 | if (!string.IsNullOrEmpty(label)) 44 | { 45 | postData.Add("el", label); 46 | } 47 | if (value.HasValue) 48 | { 49 | postData.Add("ev", value.ToString()); 50 | } 51 | 52 | var postDataString = postData 53 | .Aggregate("", (data, next) => string.Format("{0}&{1}={2}", data, next.Key, 54 | HttpUtility.UrlEncode(next.Value))) 55 | .TrimEnd('&'); 56 | 57 | // set the Content-Length header to the correct value 58 | request.ContentLength = Encoding.UTF8.GetByteCount(postDataString); 59 | 60 | // write the request body to the request 61 | using (var writer = new StreamWriter(request.GetRequestStream())) 62 | { 63 | writer.Write(postDataString); 64 | } 65 | 66 | try 67 | { 68 | var webResponse = (HttpWebResponse) request.GetResponse(); 69 | if (webResponse.StatusCode != HttpStatusCode.OK) 70 | { 71 | throw new HttpException((int) webResponse.StatusCode, 72 | "Google Analytics tracking did not return OK 200"); 73 | } 74 | } 75 | catch (Exception ex) 76 | { 77 | MessageBox.Show("\n{0}\n", ex.Message); 78 | } 79 | } 80 | 81 | private enum HitType 82 | { 83 | // ReSharper disable InconsistentNaming 84 | @event, 85 | @pageview, 86 | // ReSharper restore InconsistentNaming 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace Ultimate_Settings_Panel 5 | { 6 | static class Program 7 | { 8 | /// 9 | /// The main entry point for the application. 10 | /// 11 | [STAThread] 12 | static void Main() 13 | { 14 | Application.EnableVisualStyles(); 15 | Application.SetCompatibleTextRenderingDefault(false); 16 | Application.Run(new Main()); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Ultimate Settings Panel")] 9 | [assembly: AssemblyDescription("An all in one settings solution for a multitude of configuration options in Windows, Office, Powershell and popular internet browsers amongst others. This release now has 15 different configuration tabs including Windows 10 and a total of 295 configuration items spanning across all versions of Windows, Powershell, Outlook, Server Administration, Google Chome, Firefox and Internet Explorer. Ultimate Settings Panel is a panel based utility giving you the option of selecting from a wide range of different configuration options. So all you have to do is select a panel and click the button for the configuration item that you wish to use. This program also includes Windows God Mode built into it for extra configuration items.")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("TechyGeeksHome")] 12 | [assembly: AssemblyProduct("Ultimate Settings Panel")] 13 | [assembly: AssemblyCopyright("Copyright © techygeekshome.info 2020")] 14 | [assembly: AssemblyTrademark("techygeekshome.info")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("26fa1f51-d0b0-44b5-a1fb-e0ab288de3f8")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("6.6.0.0")] 36 | [assembly: AssemblyFileVersion("6.6.0.0")] 37 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Ultimate_Settings_Panel.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Ultimate_Settings_Panel.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap Close32px { 67 | get { 68 | object obj = ResourceManager.GetObject("Close32px", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Looks up a localized resource of type System.Drawing.Bitmap. 75 | /// 76 | internal static System.Drawing.Bitmap Facebook_32px { 77 | get { 78 | object obj = ResourceManager.GetObject("Facebook_32px", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// Looks up a localized resource of type System.Drawing.Bitmap. 85 | /// 86 | internal static System.Drawing.Bitmap github_icon { 87 | get { 88 | object obj = ResourceManager.GetObject("github-icon", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// Looks up a localized resource of type System.Drawing.Bitmap. 95 | /// 96 | internal static System.Drawing.Bitmap Google_32px { 97 | get { 98 | object obj = ResourceManager.GetObject("Google_32px", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// Looks up a localized resource of type System.Drawing.Bitmap. 105 | /// 106 | internal static System.Drawing.Bitmap Instagram_32px { 107 | get { 108 | object obj = ResourceManager.GetObject("Instagram_32px", resourceCulture); 109 | return ((System.Drawing.Bitmap)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// Looks up a localized resource of type System.Drawing.Bitmap. 115 | /// 116 | internal static System.Drawing.Bitmap Line_32px { 117 | get { 118 | object obj = ResourceManager.GetObject("Line_32px", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// Looks up a localized resource of type System.Drawing.Bitmap. 125 | /// 126 | internal static System.Drawing.Bitmap Pinterest_32px { 127 | get { 128 | object obj = ResourceManager.GetObject("Pinterest_32px", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// Looks up a localized resource of type System.Drawing.Bitmap. 135 | /// 136 | internal static System.Drawing.Bitmap TGH_Profile_Image { 137 | get { 138 | object obj = ResourceManager.GetObject("TGH_Profile_Image", resourceCulture); 139 | return ((System.Drawing.Bitmap)(obj)); 140 | } 141 | } 142 | 143 | /// 144 | /// Looks up a localized resource of type System.Drawing.Bitmap. 145 | /// 146 | internal static System.Drawing.Bitmap Twitter_32px { 147 | get { 148 | object obj = ResourceManager.GetObject("Twitter_32px", resourceCulture); 149 | return ((System.Drawing.Bitmap)(obj)); 150 | } 151 | } 152 | 153 | /// 154 | /// Looks up a localized resource of type System.Drawing.Bitmap. 155 | /// 156 | internal static System.Drawing.Bitmap updates { 157 | get { 158 | object obj = ResourceManager.GetObject("updates", resourceCulture); 159 | return ((System.Drawing.Bitmap)(obj)); 160 | } 161 | } 162 | 163 | /// 164 | /// Looks up a localized resource of type System.Drawing.Bitmap. 165 | /// 166 | internal static System.Drawing.Bitmap WordPress_32px { 167 | get { 168 | object obj = ResourceManager.GetObject("WordPress_32px", resourceCulture); 169 | return ((System.Drawing.Bitmap)(obj)); 170 | } 171 | } 172 | 173 | /// 174 | /// Looks up a localized resource of type System.Drawing.Bitmap. 175 | /// 176 | internal static System.Drawing.Bitmap YouTube_32px { 177 | get { 178 | object obj = ResourceManager.GetObject("YouTube_32px", resourceCulture); 179 | return ((System.Drawing.Bitmap)(obj)); 180 | } 181 | } 182 | } 183 | } 184 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\Instagram_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\updates.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\Google_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\Resources\Line_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\Resources\Facebook_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\Resources\Twitter_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\Resources\Pinterest_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\Resources\Close32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | ..\Resources\YouTube 2_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 147 | 148 | 149 | ..\Resources\WordPress_32px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 150 | 151 | 152 | ..\Resources\TGH Profile Image.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 153 | 154 | 155 | ..\Resources\github-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 156 | 157 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Ultimate_Settings_Panel.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.5.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("Default")] 29 | public global::MetroFramework.MetroThemeStyle USPThemeStyle { 30 | get { 31 | return ((global::MetroFramework.MetroThemeStyle)(this["USPThemeStyle"])); 32 | } 33 | set { 34 | this["USPThemeStyle"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute("Default")] 41 | public global::MetroFramework.MetroColorStyle USPColorStyle { 42 | get { 43 | return ((global::MetroFramework.MetroColorStyle)(this["USPColorStyle"])); 44 | } 45 | set { 46 | this["USPColorStyle"] = value; 47 | } 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Default 7 | 8 | 9 | Default 10 | 11 | 12 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Bug_50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Bug_50px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Close32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Close32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Facebook_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Facebook_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Google_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Google_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Instagram_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Instagram_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Line_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Line_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Pinterest_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Pinterest_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/TGH Profile Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/TGH Profile Image.jpg -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/Twitter_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/Twitter_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/WordPress_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/WordPress_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/YouTube 2_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/YouTube 2_32px.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/github-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/github-icon.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Resources/updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/Resources/updates.png -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings.cs: -------------------------------------------------------------------------------- 1 | namespace Ultimate_Settings_Panel.Properties { 2 | 3 | 4 | // This class allows you to handle specific events on the settings class: 5 | // The SettingChanging event is raised before a setting's value is changed. 6 | // The PropertyChanged event is raised after a setting's value is changed. 7 | // The SettingsLoaded event is raised after the setting values are loaded. 8 | // The SettingsSaving event is raised before the setting values are saved. 9 | internal sealed partial class Settings { 10 | 11 | public Settings() { 12 | // // To add event handlers for saving and changing settings, uncomment the lines below: 13 | // 14 | // this.SettingChanging += this.SettingChangingEventHandler; 15 | // 16 | // this.SettingsSaving += this.SettingsSavingEventHandler; 17 | // 18 | } 19 | 20 | private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) { 21 | // Add code to handle the SettingChangingEvent event here. 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/MSEdge.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class MSEdge 6 | { 7 | public void launchMSEdge() 8 | { 9 | Process.Start("microsoft-edge:https://blog.techygeekshome.info"); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/checkforupdates.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Reflection; 4 | using System.Windows.Forms; 5 | using System.Xml; 6 | 7 | namespace Ultimate_Settings_Panel.Settings 8 | { 9 | class checkforupdates 10 | { 11 | private string updateXMLstring = "https://blog.techygeekshome.info/downloads/updates/usp/USPUpdate.xml"; 12 | 13 | public void updateUSP() 14 | { 15 | string fileName = ""; 16 | Version version = null; 17 | string str2 = ""; 18 | string updateXMLstring = this.updateXMLstring; 19 | XmlTextReader reader = null; 20 | try 21 | { 22 | reader = new XmlTextReader(updateXMLstring); 23 | reader.MoveToContent(); 24 | string name = ""; 25 | if ((reader.NodeType == XmlNodeType.Element) && (reader.Name == "appinfo")) 26 | { 27 | while (reader.Read()) 28 | { 29 | if (reader.NodeType == XmlNodeType.Element) 30 | { 31 | name = reader.Name; 32 | } 33 | else if ((reader.NodeType == XmlNodeType.Text) && reader.HasValue) 34 | { 35 | if (name != "version") 36 | { 37 | if (name == "url") 38 | { 39 | goto Label_00B7; 40 | } 41 | if (name == "about") 42 | { 43 | goto Label_00C1; 44 | } 45 | } 46 | else 47 | { 48 | version = new Version(reader.Value); 49 | } 50 | } 51 | continue; 52 | Label_00B7: 53 | fileName = reader.Value; 54 | continue; 55 | Label_00C1: 56 | str2 = reader.Value; 57 | } 58 | } 59 | } 60 | catch (Exception ex) 61 | { 62 | MessageBox.Show(ex.Message, "Update", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); 63 | Environment.Exit(1); 64 | } 65 | finally 66 | { 67 | if (reader != null) 68 | { 69 | reader.Close(); 70 | } 71 | } 72 | Version version2 = Assembly.GetExecutingAssembly().GetName().Version; 73 | if (version2.CompareTo(version) < 0) 74 | { 75 | string str5 = $"New version found! Your version: { version2}.Newest version: { version}.Added in this version: { str2}. "; 76 | if (DialogResult.No != MessageBox.Show(str5 + "\nWould you like to download this update?", "Check for updates", MessageBoxButtons.YesNo, MessageBoxIcon.Question)) 77 | { 78 | try 79 | { 80 | Process.Start(fileName); 81 | } 82 | catch 83 | { 84 | } 85 | } 86 | } 87 | else 88 | { 89 | MessageBox.Show("Your version: " + version2 + " is up to date.", "Check for Updates", MessageBoxButtons.OK, MessageBoxIcon.None); 90 | } 91 | } 92 | } 93 | } -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/chrome.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class chrome 6 | { 7 | public void launchchrome() 8 | { 9 | Process.Start("chrome.exe", "https://blog.techygeekshome.info"); 10 | } 11 | 12 | public void disableplugins() 13 | { 14 | Process.Start("chrome.exe", "--disable-plugins"); 15 | } 16 | 17 | public void disabletranslate() 18 | { 19 | Process.Start("chrome.exe", "--disable-translate"); 20 | } 21 | 22 | public void kioskmode() 23 | { 24 | Process.Start("chrome.exe", "--kiosk"); 25 | } 26 | 27 | public void incognitomode() 28 | { 29 | Process.Start("chrome.exe", "--incognito"); 30 | } 31 | 32 | public void restorelastsession() 33 | { 34 | Process.Start("chrome.exe", "--restore-last-session"); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/cmdexport.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class cmdexport 6 | { 7 | // Variables 8 | Process process = new Process(); 9 | public void computersettings() 10 | { 11 | process.StartInfo.FileName = "cmd.exe"; 12 | process.StartInfo.UseShellExecute = false; 13 | process.StartInfo.Arguments = "/C set"; 14 | process.StartInfo.RedirectStandardOutput = true; 15 | process.Start(); 16 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 17 | } 18 | 19 | public void dnsinformation() 20 | { 21 | process.StartInfo.FileName = "ipconfig"; 22 | process.StartInfo.UseShellExecute = false; 23 | process.StartInfo.Arguments = "/displaydns"; 24 | process.StartInfo.RedirectStandardOutput = true; 25 | process.Start(); 26 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 27 | } 28 | 29 | public void driverquery() 30 | { 31 | process.StartInfo.FileName = "cmd.exe"; 32 | process.StartInfo.UseShellExecute = false; 33 | process.StartInfo.Arguments = "/C driverquery"; 34 | process.StartInfo.RedirectStandardOutput = true; 35 | process.Start(); 36 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 37 | } 38 | 39 | public void extensionassociations() 40 | { 41 | process.StartInfo.FileName = "cmd.exe"; 42 | process.StartInfo.UseShellExecute = false; 43 | process.StartInfo.Arguments = "/C assoc"; 44 | process.StartInfo.RedirectStandardOutput = true; 45 | process.Start(); 46 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 47 | } 48 | 49 | public void gpresult() 50 | { 51 | process.StartInfo.FileName = "gpresult"; 52 | process.StartInfo.UseShellExecute = false; 53 | process.StartInfo.Arguments = "/r"; 54 | process.StartInfo.RedirectStandardOutput = true; 55 | process.Start(); 56 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 57 | } 58 | 59 | public void ipconfig() 60 | { 61 | process.StartInfo.FileName = "cmd.exe"; 62 | process.StartInfo.UseShellExecute = false; 63 | process.StartInfo.Arguments = "/C ipconfig"; 64 | process.StartInfo.RedirectStandardOutput = true; 65 | process.Start(); 66 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 67 | } 68 | 69 | public void ipconfigall() 70 | { 71 | process.StartInfo.FileName = "ipconfig"; 72 | process.StartInfo.UseShellExecute = false; 73 | process.StartInfo.Arguments = "/all"; 74 | process.StartInfo.RedirectStandardOutput = true; 75 | process.Start(); 76 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 77 | } 78 | 79 | public void openfiles() 80 | { 81 | process.StartInfo.FileName = "cmd.exe"; 82 | process.StartInfo.UseShellExecute = false; 83 | process.StartInfo.Arguments = "/C openfiles"; 84 | process.StartInfo.RedirectStandardOutput = true; 85 | process.Start(); 86 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 87 | } 88 | 89 | public void systeminformation() 90 | { 91 | process.StartInfo.FileName = "cmd.exe"; 92 | process.StartInfo.UseShellExecute = false; 93 | process.StartInfo.Arguments = "/C systeminfo"; 94 | process.StartInfo.RedirectStandardOutput = true; 95 | process.Start(); 96 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 97 | } 98 | 99 | public void tasklist() 100 | { 101 | process.StartInfo.FileName = "cmd.exe"; 102 | process.StartInfo.UseShellExecute = false; 103 | process.StartInfo.Arguments = "/C tasklist"; 104 | process.StartInfo.RedirectStandardOutput = true; 105 | process.Start(); 106 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 107 | } 108 | 109 | public void volumeinformation() 110 | { 111 | process.StartInfo.FileName = "cmd.exe"; 112 | process.StartInfo.UseShellExecute = false; 113 | process.StartInfo.Arguments = "/C vol"; 114 | process.StartInfo.RedirectStandardOutput = true; 115 | process.Start(); 116 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 117 | } 118 | 119 | public void windowsversion() 120 | { 121 | process.StartInfo.FileName = "cmd.exe"; 122 | process.StartInfo.UseShellExecute = false; 123 | process.StartInfo.Arguments = "/C ver"; 124 | process.StartInfo.RedirectStandardOutput = true; 125 | process.Start(); 126 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 127 | } 128 | 129 | public void netstat() 130 | { 131 | process.StartInfo.FileName = "cmd.exe"; 132 | process.StartInfo.UseShellExecute = false; 133 | process.StartInfo.Arguments = "/C netstat"; 134 | process.StartInfo.RedirectStandardOutput = true; 135 | process.Start(); 136 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 137 | } 138 | public void flushdns() 139 | { 140 | process.StartInfo.FileName = "ipconfig"; 141 | process.StartInfo.UseShellExecute = false; 142 | process.StartInfo.Arguments = "/flushdns"; 143 | process.StartInfo.RedirectStandardOutput = true; 144 | process.Start(); 145 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 146 | } 147 | public void getinstalledproducts() 148 | { 149 | process.StartInfo.FileName = "cmd.exe"; 150 | process.StartInfo.UseShellExecute = false; 151 | process.StartInfo.Arguments = "/C wmic product get name"; 152 | process.StartInfo.RedirectStandardOutput = true; 153 | process.Start(); 154 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 155 | } 156 | public void netview() 157 | { 158 | process.StartInfo.FileName = "cmd.exe"; 159 | process.StartInfo.UseShellExecute = false; 160 | process.StartInfo.Arguments = "/C netview"; 161 | process.StartInfo.RedirectStandardOutput = true; 162 | process.Start(); 163 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 164 | } 165 | public void disablesmbv1() 166 | { 167 | process.StartInfo.FileName = "cmd.exe"; 168 | process.StartInfo.UseShellExecute = false; 169 | process.StartInfo.Arguments = "/C dism /online /norestart /disable-feature /featurename:SMB1Protocol"; 170 | process.StartInfo.RedirectStandardOutput = true; 171 | process.Start(); 172 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 173 | } 174 | public void deleteiehistory() 175 | { 176 | process.StartInfo.FileName = "cmd.exe"; 177 | process.StartInfo.UseShellExecute = false; 178 | process.StartInfo.Arguments = "/C rundll32.exe inetcpl.cpl,ClearMyTracksByProcess 255"; 179 | process.StartInfo.RedirectStandardOutput = true; 180 | process.Start(); 181 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 182 | } 183 | public void bitlocker() 184 | { 185 | process.StartInfo.FileName = "cmd.exe"; 186 | process.StartInfo.UseShellExecute = false; 187 | process.StartInfo.Arguments = "/C manage-bde -status"; 188 | process.StartInfo.RedirectStandardOutput = true; 189 | process.Start(); 190 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 191 | } 192 | public void resetWMI() 193 | { 194 | process.StartInfo.FileName = "cmd.exe"; 195 | process.StartInfo.UseShellExecute = false; 196 | process.StartInfo.Arguments = "/C winmgmt /resetrepository"; 197 | process.StartInfo.RedirectStandardOutput = true; 198 | process.Start(); 199 | new cmdoutput(process.StandardOutput.ReadToEnd()).Show(); 200 | } 201 | } 202 | } 203 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/controlpanel.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | using System.IO; 3 | using System.Threading; 4 | 5 | namespace Ultimate_Settings_Panel.Settings 6 | { 7 | class controlpanel 8 | { 9 | public void AccessibilityOptions() 10 | { 11 | Process.Start("utilman.exe"); 12 | } 13 | 14 | public void ActionCenter() 15 | { 16 | Process.Start("Wscui.cpl"); 17 | } 18 | 19 | public void AddFeaturestoWindows81() 20 | { 21 | Process.Start("control", "/name Microsoft.WindowsAnytimeUpgrade"); 22 | } 23 | 24 | public void AddFeaturestoWindows10() 25 | { 26 | Process.Start(@"C:\Windows\System32\OptionalFeatures.exe"); 27 | } 28 | 29 | public void AddNewHardware() 30 | { 31 | Process.Start("control", "sysdm.cpl add new hardware"); 32 | } 33 | 34 | public void AdminTools() 35 | { 36 | Process.Start("control", "admintools"); 37 | } 38 | 39 | public void AnytimeUpgrade() 40 | { 41 | Process.Start("control", "/name Microsoft.WindowsAnytimeUpgrade"); 42 | } 43 | 44 | public void AutoPlay() 45 | { 46 | Process.Start("control", "/name Microsoft.AutoPlay"); 47 | } 48 | 49 | public void BitLocker() 50 | { 51 | Process.Start("control", "/name Microsoft.BitLockerDriveEncryption"); 52 | } 53 | 54 | public void BluetoothDevices() 55 | { 56 | Process.Start("BthProps.cpl"); 57 | } 58 | 59 | public void chkdsk() 60 | { 61 | new Process 62 | { 63 | StartInfo = { 64 | CreateNoWindow = false, 65 | WindowStyle = ProcessWindowStyle.Normal, 66 | FileName = "ChkDsk.exe", 67 | Arguments = "C:" + " /f", 68 | UseShellExecute = false 69 | } 70 | }.Start(); 71 | } 72 | 73 | public void ColorManagement() 74 | { 75 | Process.Start("control", "/name Microsoft.ColorManagement"); 76 | } 77 | 78 | public void windowscontrolpanel() 79 | { 80 | Process.Start("control"); 81 | } 82 | 83 | public void CredentialManager() 84 | { 85 | Process.Start("control", "/name Microsoft.CredentialManager"); 86 | } 87 | 88 | public void DefaultPrograms() 89 | { 90 | Process.Start("control", "/name Microsoft.DefaultPrograms"); 91 | } 92 | 93 | public void DesktopGadgets() 94 | { 95 | Process.Start("control", "/name Microsoft.DesktopGadgets"); 96 | } 97 | 98 | public void detailedlicenceinfo() 99 | { 100 | string arguments = "/dlv"; 101 | Process.Start("slmgr.vbs", arguments); 102 | } 103 | 104 | public void DeviceManager() 105 | { 106 | Process.Start("HdwWiz.cpl"); 107 | } 108 | 109 | public void DevicesandPrinters() 110 | { 111 | Process.Start("control", "printers"); 112 | } 113 | 114 | public void diskcleanup() 115 | { 116 | Process.Start("cleanmgr.exe"); 117 | } 118 | 119 | public void DiskPart() 120 | { 121 | Process.Start("diskpart"); 122 | } 123 | 124 | public void DiskRAID() 125 | { 126 | Process.Start("diskraid"); 127 | } 128 | 129 | public void EventViewer() 130 | { 131 | Process.Start("eventvwr"); 132 | } 133 | 134 | public void FamilySafety() 135 | { 136 | Process.Start("control", "/name Microsoft.ParentalControls"); 137 | } 138 | 139 | public void FileHistory() 140 | { 141 | Process.Start("control", "/name Microsoft.FileHistory"); 142 | } 143 | 144 | public void FileRecovery() 145 | { 146 | Process.Start("control", "/name Microsoft.BackupAndRestore"); 147 | } 148 | 149 | public void FindFast() 150 | { 151 | Process.Start("control", "findfast.cpl"); 152 | } 153 | 154 | public void FolderOptions() 155 | { 156 | Process.Start("control", "/name Microsoft.FolderOptions"); 157 | } 158 | 159 | public void Fonts() 160 | { 161 | Process.Start("control", "fonts"); 162 | } 163 | 164 | public void GameControllers() 165 | { 166 | Process.Start("Joy.cpl"); 167 | } 168 | 169 | public void GetPrograms() 170 | { 171 | Process.Start("control", "/name Microsoft.GetPrograms"); 172 | } 173 | 174 | public void GettingStarted() 175 | { 176 | Process.Start("control", "/name Microsoft.GettingStarted"); 177 | } 178 | 179 | public void GodMode() 180 | { 181 | Directory.CreateDirectory(@"C:\\TGH\\GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"); 182 | Process.Start(@"C:\TGH\GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"); 183 | } 184 | 185 | public void GPResult() 186 | { 187 | string arguments = @"/h c:\windows\temp\gpresult.html"; 188 | Process.Start("gpresult", arguments); 189 | Thread.Sleep(0x1388); 190 | Process.Start(@"c:\windows\temp\gpresult.html"); 191 | } 192 | 193 | public void grouppolicyeditor() 194 | { 195 | Process.Start("gpedit.msc"); 196 | } 197 | 198 | public void HomeGroup() 199 | { 200 | Process.Start("control", "/name Microsoft.HomeGroup"); 201 | } 202 | 203 | public void IndexingOptions() 204 | { 205 | Process.Start("control", "/name Microsoft.IndexingOptions"); 206 | } 207 | 208 | public void InfraRed() 209 | { 210 | Process.Start("Irprops.cpl"); 211 | } 212 | 213 | public void IntelGraphicsMediaControlPanel() 214 | { 215 | Process.Start("lgfxcpl.cpl"); 216 | } 217 | 218 | public void InternetProperties() 219 | { 220 | Process.Start("Inetcpl.cpl"); 221 | } 222 | 223 | public void iSCSIInitiator() 224 | { 225 | Process.Start("control", "/name Microsoft.iSCSIInitiator"); 226 | } 227 | 228 | public void Keyboard() 229 | { 230 | Process.Start("control", "main.cpl keyboard"); 231 | } 232 | 233 | public void LocationInformation() 234 | { 235 | Process.Start("Telephon.cpl"); 236 | } 237 | 238 | public void MailSetupOutlook() 239 | { 240 | Process.Start("control", "MLCFG32.cpl"); 241 | } 242 | 243 | public void MobilityCenter() 244 | { 245 | Process.Start("control", "/name Microsoft.MobilityCenter"); 246 | } 247 | 248 | public void Modem() 249 | { 250 | Process.Start("control", "modem.cpl"); 251 | } 252 | 253 | public void Mouse() 254 | { 255 | Process.Start("Main.cpl"); 256 | } 257 | 258 | public void NetworkConnections() 259 | { 260 | Process.Start("ncpa.cpl"); 261 | } 262 | 263 | public void NetworkSetupWizard() 264 | { 265 | Process.Start("control", "netsetup.cpl"); 266 | } 267 | 268 | public void NetworkSharingCenter() 269 | { 270 | Process.Start("control", "/name Microsoft.NetworkAndSharingCenter"); 271 | } 272 | 273 | public void NotificationAreaIcons() 274 | { 275 | Process.Start("control", "/name Microsoft.NotificationAreaIcons"); 276 | } 277 | 278 | public void ODBCAdmin() 279 | { 280 | Process.Start("control", "odbccp32.cpl"); 281 | } 282 | 283 | public void OfflineFiles() 284 | { 285 | Process.Start("control", "/name Microsoft.OfflineFiles"); 286 | } 287 | 288 | public void ParentalControls() 289 | { 290 | Process.Start("control", "/name Microsoft.ParentalControls"); 291 | } 292 | 293 | public void PCCard() 294 | { 295 | Process.Start("control", "main.cpl pc card"); 296 | } 297 | 298 | public void PeopleNearMe() 299 | { 300 | Process.Start("CollAb.cpl"); 301 | } 302 | 303 | public void PerformanceInfo() 304 | { 305 | Process.Start("control", "/name Microsoft.PerformanceInformationAndTools"); 306 | } 307 | 308 | public void PowerConfig() 309 | { 310 | Process.Start("powercfg.cpl"); 311 | } 312 | 313 | public void PresentationSettings() 314 | { 315 | Process.Start("presentationsettings.exe"); 316 | } 317 | 318 | public void ProblemReports() 319 | { 320 | Process.Start("control", "/name Microsoft.ProblemReportsAndSolutions"); 321 | } 322 | 323 | public void ProgramsandFeatures() 324 | { 325 | Process.Start("AppWiz.cpl"); 326 | } 327 | 328 | public void Recovery() 329 | { 330 | Process.Start("control", "/name Microsoft.Recovery"); 331 | } 332 | 333 | public void regedit() 334 | { 335 | Process.Start("regedit"); 336 | } 337 | 338 | public void RegionandLanguage() 339 | { 340 | Process.Start("Intl.cpl"); 341 | } 342 | 343 | public void RemoteDesktopConnection() 344 | { 345 | Process.Start("mstsc.exe"); 346 | } 347 | 348 | public void ScannerandCameras() 349 | { 350 | Process.Start("control", "sticpl.cpl"); 351 | } 352 | 353 | public void ScreenResolution() 354 | { 355 | Process.Start("DESK.cpl"); 356 | } 357 | 358 | public void SecurityCenter() 359 | { 360 | Process.Start("control", "/name Microsoft.SecurityCenter"); 361 | } 362 | 363 | public void Sound() 364 | { 365 | Process.Start("mmsys.cpl"); 366 | } 367 | 368 | public void SyncCenter() 369 | { 370 | Process.Start("control", "/name Microsoft.SyncCenter"); 371 | } 372 | 373 | public void SystemProperties() 374 | { 375 | Process.Start("sysdm.cpl"); 376 | } 377 | 378 | public void SystemRestore() 379 | { 380 | Process.Start("rstrui.exe"); 381 | } 382 | 383 | public void TabletPC() 384 | { 385 | Process.Start("TabletPC.cpl"); 386 | } 387 | 388 | public void taskmanager() 389 | { 390 | Process.Start("taskmgr"); 391 | } 392 | 393 | public void TaskScheduler() 394 | { 395 | Process.Start("control", "schedtasks"); 396 | } 397 | 398 | public void TexttoSpeech() 399 | { 400 | Process.Start("control", "/name Microsoft.TextToSpeech"); 401 | } 402 | 403 | public void TimeDate() 404 | { 405 | Process.Start("TimeDate.cpl"); 406 | } 407 | 408 | public void Troubleshooting() 409 | { 410 | Process.Start("control", "/name Microsoft.Troubleshooting"); 411 | } 412 | 413 | public void UACSettings() 414 | { 415 | Process.Start("UserAccountControlSettings.exe"); 416 | } 417 | 418 | public void UserAccounts() 419 | { 420 | Process.Start("control", "userpasswords"); 421 | } 422 | 423 | public void WelcomeCenter() 424 | { 425 | Process.Start("control", "/name Microsoft.WelcomeCenter"); 426 | } 427 | 428 | public void WindowsCardSpace() 429 | { 430 | Process.Start("control", "/name Microsoft.CardSpace"); 431 | } 432 | 433 | public void WindowsDefender() 434 | { 435 | Process.Start("control", "/name Microsoft.WindowsDefender"); 436 | } 437 | 438 | public void windowsexplorer() 439 | { 440 | Process.Start("explorer"); 441 | } 442 | 443 | public void WindowsFirewall() 444 | { 445 | Process.Start("FireWall.cpl"); 446 | } 447 | 448 | public void WindowsSideShow() 449 | { 450 | Process.Start("control", "/name Microsoft.WindowsSideShow"); 451 | } 452 | 453 | public void WindowsUpdate() 454 | { 455 | Process.Start("control", "/name Microsoft.WindowsUpdate"); 456 | } 457 | } 458 | } -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/firefox.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class firefox 6 | { 7 | public void launchFirefox() 8 | { 9 | Process.Start("firefox.exe", "https://blog.techygeekshome.info"); 10 | } 11 | public void privatebrowsing() 12 | { 13 | Process.Start("firefox.exe", "-private-window https://blog.techygeekshome.info"); 14 | } 15 | public void preferences() 16 | { 17 | Process.Start("firefox.exe", "-preferences"); 18 | } 19 | public void setdefaultbrowser() 20 | { 21 | Process.Start("firefox.exe", "-setdefaultbrowser"); 22 | } 23 | public void safemode() 24 | { 25 | Process.Start("firefox.exe", "-safemode"); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/general.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class general 6 | { 7 | public void uspwebsite() 8 | { 9 | Process.Start("https://blog.techygeekshome.info/ultimate-settings-panel-homepage/"); 10 | } 11 | public void instructions() 12 | { 13 | Process.Start("https://blog.techygeekshome.info/ultimate-settings-panel-homepage/ultimate-settings-panel-instructions/"); 14 | } 15 | public void reportabug() 16 | { 17 | Process.Start("https://blog.techygeekshome.info/contact/"); 18 | } 19 | public void feedback() 20 | { 21 | Process.Start("https://blog.techygeekshome.info/contact/"); 22 | } 23 | public void support() 24 | { 25 | Process.Start("https://blog.techygeekshome.info/ultimate-settings-panel-homepage/ultimate-settings-panel-instructions/"); 26 | } 27 | public void TGHWebsite() 28 | { 29 | Process.Start("https://blog.techygeekshome.info"); 30 | } 31 | public void youtube() 32 | { 33 | Process.Start("https://www.youtube.com/channel/UCtEuFj1SMLiuRoucD1hv8dA"); 34 | } 35 | public void facebook() 36 | { 37 | Process.Start("https://www.facebook.com/techygeeks.home"); 38 | } 39 | public void twitter() 40 | { 41 | Process.Start("https://twitter.com/TechyGeeks1"); 42 | } 43 | public void googleplus() 44 | { 45 | Process.Start("https://plus.google.com/u/0/+AJArmstrongTGH"); 46 | } 47 | public void pinterest() 48 | { 49 | Process.Start("https://www.pinterest.co.uk/techygeekshome/"); 50 | } 51 | public void instagram() 52 | { 53 | Process.Start("https://www.instagram.com/techygeekshome/"); 54 | } 55 | public void socialmedia() 56 | { 57 | Process.Start("https://blog.techygeekshome.info/2017/10/follow-us-social-media/"); 58 | } 59 | public void videodemo() 60 | { 61 | Process.Start("https://youtu.be/IWymehGU2tQ"); 62 | } 63 | 64 | public void github() 65 | { 66 | Process.Start("https://github.com/techygeekshome/Ultimate-Settings-Panel"); 67 | } 68 | 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/internetexplorer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Diagnostics; 7 | 8 | namespace Ultimate_Settings_Panel.Settings 9 | { 10 | class internetexplorer 11 | { 12 | public void launchIE() 13 | { 14 | Process.Start("iexplore.exe", "https://blog.techygeekshome.info"); 15 | } 16 | public void NoExtensions() 17 | { 18 | Process.Start("iexplore.exe", "-extoff https://blog.techygeekshome.info"); 19 | } 20 | public void InPrivateBrowsing() 21 | { 22 | Process.Start("iexplore.exe", "-private https://blog.techygeekshome.info"); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/outlook.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | using System.IO; 3 | 4 | namespace Ultimate_Settings_Panel.Settings 5 | { 6 | class outlook 7 | { 8 | private string checkclientv = "/checkclient"; 9 | private string cleanaddressesv = "/cleanfromaddresses"; 10 | private string cleanautocompletecachev = "/cleanautocompletecache"; 11 | private string cleancatsv = "/cleancategories"; 12 | private string cleanclientrulesv = "/cleanclientrules"; 13 | private string cleanconvongoingactionsv = "/cleanconvongoingactions"; 14 | private string cleandmrecordsv = "/cleandmrecords"; 15 | private string cleanfindersv = "/cleanfinders"; 16 | private string cleanfreebusyv = "/cleanfreebusy"; 17 | private string cleanmailtipcachev = "/cleanmailtipcache"; 18 | private string cleanremindersv = "/cleanreminders"; 19 | private string cleanrulesv = "/cleanrules"; 20 | private string cleanserverrulesv = "/cleanserverrules"; 21 | private string cleansharingv = "/cleansharing"; 22 | private string cleansniffv = "/cleansniff"; 23 | private string cleansubscriptionsv = "/cleansubscriptions"; 24 | private string cleanviewsv = "/cleanviews"; 25 | private string finderv = "/finder"; 26 | private string importNK2v = "/importNK2"; 27 | private string nopreviewv = "/nopreview"; 28 | private string outlook2010executablefile = @"C:\Program Files\Microsoft Office\Office14\OUTLOOK.EXE"; 29 | private string outlook2013executablefile = @"C:\Program Files\Microsoft Office\Office15\OUTLOOK.EXE"; 30 | private string profilesv = "/profiles"; 31 | private string resetfoldernamesv = "/resetfoldernames"; 32 | private string resetfoldersv = "/resetfolders"; 33 | private string resetnavpanev = "/resetnavpane"; 34 | private string resetquickstepsv = "/resetquicksteps"; 35 | private string resetsearchcriteriav = "/resetsearchcriteria"; 36 | private string resetsharedfoldersv = "/resetsharedfolders"; 37 | private string resettodobarv = "/resettodobar"; 38 | private string safemodev = "/Safe"; 39 | private string scanpst2010executablefile = @"C:\Program Files\Microsoft Office\Office14\Scanpst.exe"; 40 | private string scanpst2013executablefile = @"C:\Program Files\Microsoft Office\Office15\Scanpst.exe"; 41 | 42 | public void checkclient() 43 | { 44 | if (File.Exists(outlook2010executablefile)) 45 | { 46 | Process.Start(outlook2010executablefile, checkclientv); 47 | } 48 | else if (File.Exists(outlook2013executablefile)) 49 | { 50 | Process.Start(outlook2013executablefile, checkclientv); 51 | } 52 | } 53 | 54 | public void cleanautocompletecache() 55 | { 56 | if (File.Exists(outlook2010executablefile)) 57 | { 58 | Process.Start(outlook2010executablefile, cleanautocompletecachev); 59 | } 60 | else if (File.Exists(outlook2013executablefile)) 61 | { 62 | Process.Start(outlook2013executablefile, cleanautocompletecachev); 63 | } 64 | } 65 | 66 | public void cleancategories() 67 | { 68 | if (File.Exists(outlook2010executablefile)) 69 | { 70 | Process.Start(outlook2010executablefile, cleancatsv); 71 | } 72 | else if (File.Exists(outlook2013executablefile)) 73 | { 74 | Process.Start(outlook2013executablefile, cleancatsv); 75 | } 76 | } 77 | 78 | public void cleanclientrules() 79 | { 80 | if (File.Exists(outlook2010executablefile)) 81 | { 82 | Process.Start(outlook2010executablefile, cleanclientrulesv); 83 | } 84 | else if (File.Exists(outlook2013executablefile)) 85 | { 86 | Process.Start(outlook2013executablefile, cleanclientrulesv); 87 | } 88 | } 89 | 90 | public void cleanconvongoingactions() 91 | { 92 | if (File.Exists(outlook2010executablefile)) 93 | { 94 | Process.Start(outlook2010executablefile, cleanconvongoingactionsv); 95 | } 96 | else if (File.Exists(outlook2013executablefile)) 97 | { 98 | Process.Start(outlook2013executablefile, cleanconvongoingactionsv); 99 | } 100 | } 101 | 102 | public void cleandmrecords() 103 | { 104 | if (File.Exists(outlook2010executablefile)) 105 | { 106 | Process.Start(outlook2010executablefile, cleandmrecordsv); 107 | } 108 | else if (File.Exists(outlook2013executablefile)) 109 | { 110 | Process.Start(outlook2013executablefile, cleandmrecordsv); 111 | } 112 | } 113 | 114 | public void cleanfinders() 115 | { 116 | if (File.Exists(outlook2010executablefile)) 117 | { 118 | Process.Start(outlook2010executablefile, cleanfindersv); 119 | } 120 | else if (File.Exists(outlook2013executablefile)) 121 | { 122 | Process.Start(outlook2013executablefile, cleanfindersv); 123 | } 124 | } 125 | 126 | public void cleanfreebusy() 127 | { 128 | if (File.Exists(outlook2010executablefile)) 129 | { 130 | Process.Start(outlook2010executablefile, cleanfreebusyv); 131 | } 132 | else if (File.Exists(outlook2013executablefile)) 133 | { 134 | Process.Start(outlook2013executablefile, cleanfreebusyv); 135 | } 136 | } 137 | 138 | public void cleanfromaddresses() 139 | { 140 | if (File.Exists(outlook2010executablefile)) 141 | { 142 | Process.Start(outlook2010executablefile, cleanaddressesv); 143 | } 144 | else if (File.Exists(outlook2013executablefile)) 145 | { 146 | Process.Start(outlook2013executablefile, cleanaddressesv); 147 | } 148 | } 149 | 150 | public void cleanmailtipcache() 151 | { 152 | if (File.Exists(outlook2010executablefile)) 153 | { 154 | Process.Start(outlook2010executablefile, cleanmailtipcachev); 155 | } 156 | else if (File.Exists(outlook2013executablefile)) 157 | { 158 | Process.Start(outlook2013executablefile, cleanmailtipcachev); 159 | } 160 | } 161 | 162 | public void cleanreminders() 163 | { 164 | if (File.Exists(outlook2010executablefile)) 165 | { 166 | Process.Start(outlook2010executablefile, cleanremindersv); 167 | } 168 | else if (File.Exists(outlook2013executablefile)) 169 | { 170 | Process.Start(outlook2013executablefile, cleanremindersv); 171 | } 172 | } 173 | 174 | public void cleanrules() 175 | { 176 | if (File.Exists(outlook2010executablefile)) 177 | { 178 | Process.Start(outlook2010executablefile, cleanrulesv); 179 | } 180 | else if (File.Exists(outlook2013executablefile)) 181 | { 182 | Process.Start(outlook2013executablefile, cleanrulesv); 183 | } 184 | } 185 | 186 | public void cleanserverrules() 187 | { 188 | if (File.Exists(outlook2010executablefile)) 189 | { 190 | Process.Start(outlook2010executablefile, cleanserverrulesv); 191 | } 192 | else if (File.Exists(outlook2013executablefile)) 193 | { 194 | Process.Start(outlook2013executablefile, cleanserverrulesv); 195 | } 196 | } 197 | 198 | public void cleansharing() 199 | { 200 | if (File.Exists(outlook2010executablefile)) 201 | { 202 | Process.Start(outlook2010executablefile, cleansharingv); 203 | } 204 | else if (File.Exists(outlook2013executablefile)) 205 | { 206 | Process.Start(outlook2013executablefile, cleansharingv); 207 | } 208 | } 209 | 210 | public void cleansniff() 211 | { 212 | if (File.Exists(outlook2010executablefile)) 213 | { 214 | Process.Start(outlook2010executablefile, cleansniffv); 215 | } 216 | else if (File.Exists(outlook2013executablefile)) 217 | { 218 | Process.Start(outlook2013executablefile, cleansniffv); 219 | } 220 | } 221 | 222 | public void cleansubscriptions() 223 | { 224 | if (File.Exists(outlook2010executablefile)) 225 | { 226 | Process.Start(outlook2010executablefile, cleansubscriptionsv); 227 | } 228 | else if (File.Exists(outlook2013executablefile)) 229 | { 230 | Process.Start(outlook2013executablefile, cleansubscriptionsv); 231 | } 232 | } 233 | 234 | public void finder() 235 | { 236 | if (File.Exists(outlook2010executablefile)) 237 | { 238 | Process.Start(outlook2010executablefile, finderv); 239 | } 240 | else if (File.Exists(outlook2013executablefile)) 241 | { 242 | Process.Start(outlook2013executablefile, finderv); 243 | } 244 | } 245 | 246 | public void importNK2() 247 | { 248 | if (File.Exists(outlook2010executablefile)) 249 | { 250 | Process.Start(outlook2010executablefile, importNK2v); 251 | } 252 | else if (File.Exists(outlook2013executablefile)) 253 | { 254 | Process.Start(outlook2013executablefile, importNK2v); 255 | } 256 | } 257 | 258 | public void nopreview() 259 | { 260 | if (File.Exists(outlook2010executablefile)) 261 | { 262 | Process.Start(outlook2010executablefile, nopreviewv); 263 | } 264 | else if (File.Exists(outlook2013executablefile)) 265 | { 266 | Process.Start(outlook2013executablefile, nopreviewv); 267 | } 268 | } 269 | 270 | public void outlooksafemode() 271 | { 272 | if (File.Exists(outlook2010executablefile)) 273 | { 274 | Process.Start(outlook2010executablefile, safemodev); 275 | } 276 | else if (File.Exists(outlook2013executablefile)) 277 | { 278 | Process.Start(outlook2013executablefile, safemodev); 279 | } 280 | } 281 | 282 | public void profiles() 283 | { 284 | if (File.Exists(outlook2010executablefile)) 285 | { 286 | Process.Start(outlook2010executablefile, profilesv); 287 | } 288 | else if (File.Exists(outlook2013executablefile)) 289 | { 290 | Process.Start(outlook2013executablefile, profilesv); 291 | } 292 | } 293 | 294 | public void repairPST() 295 | { 296 | if (File.Exists(outlook2010executablefile)) 297 | { 298 | Process.Start(scanpst2010executablefile); 299 | } 300 | else if (File.Exists(outlook2013executablefile)) 301 | { 302 | Process.Start(scanpst2013executablefile); 303 | } 304 | } 305 | 306 | public void resetfoldernames() 307 | { 308 | if (File.Exists(outlook2010executablefile)) 309 | { 310 | Process.Start(outlook2010executablefile, resetfoldernamesv); 311 | } 312 | else if (File.Exists(outlook2013executablefile)) 313 | { 314 | Process.Start(outlook2013executablefile, resetfoldernamesv); 315 | } 316 | } 317 | 318 | public void resetfolders() 319 | { 320 | if (File.Exists(outlook2010executablefile)) 321 | { 322 | Process.Start(outlook2010executablefile, resetfoldersv); 323 | } 324 | else if (File.Exists(outlook2013executablefile)) 325 | { 326 | Process.Start(outlook2013executablefile, resetfoldersv); 327 | } 328 | } 329 | 330 | public void resetnavpane() 331 | { 332 | if (File.Exists(outlook2010executablefile)) 333 | { 334 | Process.Start(outlook2010executablefile, resetnavpanev); 335 | } 336 | else if (File.Exists(outlook2013executablefile)) 337 | { 338 | Process.Start(outlook2013executablefile, resetnavpanev); 339 | } 340 | } 341 | 342 | public void resetquicksteps() 343 | { 344 | if (File.Exists(outlook2010executablefile)) 345 | { 346 | Process.Start(outlook2010executablefile, resetquickstepsv); 347 | } 348 | else if (File.Exists(outlook2013executablefile)) 349 | { 350 | Process.Start(outlook2013executablefile, resetquickstepsv); 351 | } 352 | } 353 | 354 | public void resetsearchcriteria() 355 | { 356 | if (File.Exists(outlook2010executablefile)) 357 | { 358 | Process.Start(outlook2010executablefile, resetsearchcriteriav); 359 | } 360 | else if (File.Exists(outlook2013executablefile)) 361 | { 362 | Process.Start(outlook2013executablefile, resetsearchcriteriav); 363 | } 364 | } 365 | 366 | public void resetsharedfolders() 367 | { 368 | if (File.Exists(outlook2010executablefile)) 369 | { 370 | Process.Start(outlook2010executablefile, resetsharedfoldersv); 371 | } 372 | else if (File.Exists(outlook2013executablefile)) 373 | { 374 | Process.Start(outlook2013executablefile, resetsharedfoldersv); 375 | } 376 | } 377 | 378 | public void resettodobar() 379 | { 380 | if (File.Exists(outlook2010executablefile)) 381 | { 382 | Process.Start(outlook2010executablefile, resettodobarv); 383 | } 384 | else if (File.Exists(outlook2013executablefile)) 385 | { 386 | Process.Start(outlook2013executablefile, resettodobarv); 387 | } 388 | } 389 | 390 | public void restoreallviews() 391 | { 392 | if (File.Exists(outlook2010executablefile)) 393 | { 394 | Process.Start(outlook2010executablefile, cleanviewsv); 395 | } 396 | else if (File.Exists(outlook2013executablefile)) 397 | { 398 | Process.Start(outlook2013executablefile, cleanviewsv); 399 | } 400 | } 401 | } 402 | } -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/powershell.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class powershell 6 | { 7 | public void powershellise() 8 | { 9 | Process.Start("powershell_ise"); 10 | } 11 | public void powershellrun() 12 | { 13 | Process.Start("powershell"); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/serveradmin.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class serveradmin 6 | { 7 | public void ADDirectoryManagement() 8 | { 9 | Process.Start("admgmt.msc"); 10 | } 11 | 12 | public void ADDomainandTrusts() 13 | { 14 | Process.Start("domain.msc"); 15 | } 16 | 17 | public void ADSIEdit() 18 | { 19 | Process.Start("adsiedit.msc"); 20 | } 21 | 22 | public void ADSitesandServices() 23 | { 24 | Process.Start("dssite.msc"); 25 | } 26 | 27 | public void ADUsersandComputers() 28 | { 29 | Process.Start("dsa.msc"); 30 | } 31 | 32 | public void AuthorisationManager() 33 | { 34 | Process.Start("azman.msc"); 35 | } 36 | 37 | public void CertificateTemplates() 38 | { 39 | Process.Start("certtmpl.msc"); 40 | } 41 | 42 | public void CertificationAuthorityManagement() 43 | { 44 | Process.Start("certsrv.msc"); 45 | } 46 | 47 | public void ClusterAdministrator() 48 | { 49 | Process.Start("cluadmin.msc"); 50 | } 51 | 52 | public void ComponentServices() 53 | { 54 | Process.Start("comexp.msc"); 55 | } 56 | 57 | public void ComputerManagement() 58 | { 59 | Process.Start("compmgmt.msc"); 60 | } 61 | 62 | public void ConfigureYourServer() 63 | { 64 | Process.Start("cys.exe"); 65 | } 66 | 67 | public void DeviceManager() 68 | { 69 | Process.Start("devmgmt.msc"); 70 | } 71 | 72 | public void DFS() 73 | { 74 | Process.Start("dfsgui.msc"); 75 | } 76 | 77 | public void DHCPManagement() 78 | { 79 | Process.Start("dhcpmgmt.msc"); 80 | } 81 | 82 | public void DiskDefragmenter() 83 | { 84 | Process.Start("dfrg.msc"); 85 | } 86 | 87 | public void DNS() 88 | { 89 | Process.Start("dnsmgmt.msc"); 90 | } 91 | 92 | public void EventViewer() 93 | { 94 | Process.Start("eventvwr.msc"); 95 | } 96 | 97 | public void IndexingService() 98 | { 99 | Process.Start("ciadv.msc"); 100 | } 101 | 102 | public void IPAddressManage() 103 | { 104 | Process.Start("ipaddrmgmt.msc"); 105 | } 106 | 107 | public void LicensingManager() 108 | { 109 | Process.Start("llsmgr.msc"); 110 | } 111 | 112 | public void LocalCertificatesManagement() 113 | { 114 | Process.Start("certmgr.msc"); 115 | } 116 | 117 | public void LocalGPOEdit() 118 | { 119 | Process.Start("gpedit.msc"); 120 | } 121 | 122 | public void LocalSecuritySettings() 123 | { 124 | Process.Start("secpol.msc"); 125 | } 126 | 127 | public void LocalUsersGroups() 128 | { 129 | Process.Start("lusrmgr.msc"); 130 | } 131 | 132 | public void NetworkLoadBalancing() 133 | { 134 | Process.Start("nlbmgr.exe"); 135 | } 136 | 137 | public void PerformanceMonitor() 138 | { 139 | Process.Start("perfmon.msc"); 140 | } 141 | 142 | public void PKIViewer() 143 | { 144 | Process.Start("pkiview.msc"); 145 | } 146 | 147 | public void PublicKeyManagement() 148 | { 149 | Process.Start("pkmgmt.msc"); 150 | } 151 | 152 | public void QoS() 153 | { 154 | Process.Start("acssnap.msc"); 155 | } 156 | 157 | public void RemoteDesktops() 158 | { 159 | Process.Start("tsmmc.msc"); 160 | } 161 | 162 | public void RemoteStorage() 163 | { 164 | Process.Start("rsadmin.msc"); 165 | } 166 | 167 | public void RemovableStorage() 168 | { 169 | Process.Start("ntmsmgr.msc"); 170 | } 171 | 172 | public void RoutingandRemote() 173 | { 174 | Process.Start("rrasmgmt.msc"); 175 | } 176 | 177 | public void SchemaManagement() 178 | { 179 | Process.Start("schmmgmt.msc"); 180 | } 181 | 182 | public void ServicesManagement() 183 | { 184 | Process.Start("services.msc"); 185 | } 186 | 187 | public void SharedFolders() 188 | { 189 | Process.Start("fsmgmt.msc"); 190 | } 191 | 192 | public void TelephonyManagement() 193 | { 194 | Process.Start("tapimgmt.msc"); 195 | } 196 | 197 | public void TerminalServer() 198 | { 199 | Process.Start("tscc.msc"); 200 | } 201 | 202 | public void WINSManagement() 203 | { 204 | Process.Start("winsmgmt.msc"); 205 | } 206 | 207 | public void WMIManagement() 208 | { 209 | Process.Start("wmimgmt.msc"); 210 | } 211 | } 212 | } 213 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/shutdown.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class shutdown 6 | { 7 | private string shutdownstring = "shutdown"; 8 | 9 | public void abortshutdown() 10 | { 11 | Process.Start(shutdownstring, "/a"); 12 | } 13 | 14 | public void forceshutdown() 15 | { 16 | Process.Start(shutdownstring, "/f"); 17 | } 18 | 19 | public void hibernate() 20 | { 21 | Process.Start(shutdownstring, "/h"); 22 | } 23 | 24 | public void logoff() 25 | { 26 | Process.Start(shutdownstring, "/l"); 27 | } 28 | 29 | public void restart() 30 | { 31 | Process.Start(shutdownstring, "/r"); 32 | } 33 | 34 | public void shutdownmachine() 35 | { 36 | Process.Start(shutdownstring, "/s"); 37 | } 38 | 39 | public void shutdownoptions() 40 | { 41 | Process.Start(shutdownstring, "/i"); 42 | } 43 | 44 | public void turnoffhibernation() 45 | { 46 | Process.Start("powercfg -h off"); 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/tricks.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class tricks 6 | { 7 | // Variables 8 | Process process = new Process(); 9 | public void starwars() 10 | { 11 | process.StartInfo.FileName = @"C:\windows\system32\cmd.exe"; 12 | process.StartInfo.Arguments = "/k telnet towel.blinkenlights.nl"; 13 | process.StartInfo.WindowStyle = ProcessWindowStyle.Normal; 14 | process.Start(); 15 | process.WaitForExit(); 16 | } 17 | public void weatherservice() 18 | { 19 | process.StartInfo.FileName = @"C:\windows\system32\cmd.exe"; 20 | process.StartInfo.Arguments = "/k telnet rainmaker.wunderground.com"; 21 | process.StartInfo.WindowStyle = ProcessWindowStyle.Normal; 22 | process.Start(); 23 | process.WaitForExit(); 24 | } 25 | public void telehack() 26 | { 27 | process.StartInfo.FileName = @"C:\windows\system32\cmd.exe"; 28 | process.StartInfo.Arguments = "/k telnet telehack.com"; 29 | process.StartInfo.WindowStyle = ProcessWindowStyle.Normal; 30 | process.Start(); 31 | process.WaitForExit(); 32 | } 33 | 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Settings/windows.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace Ultimate_Settings_Panel.Settings 4 | { 5 | class windows 6 | { 7 | public void aboutwindows() 8 | { 9 | Process.Start("winver"); 10 | } 11 | 12 | public void addaprinter() 13 | { 14 | Process.Start("rundll32", "printui.dll,PrintUIEntry /il"); 15 | } 16 | 17 | public void advancedaccounts() 18 | { 19 | Process.Start("netplwiz"); 20 | } 21 | 22 | public void advancedstartup() 23 | { 24 | Process.Start("bootim"); 25 | } 26 | 27 | public void bluetoothfiletransfer() 28 | { 29 | Process.Start("fsquirt"); 30 | } 31 | 32 | public void charmap() 33 | { 34 | Process.Start("charmap"); 35 | } 36 | 37 | public void cleartypetuner() 38 | { 39 | Process.Start("cttune"); 40 | } 41 | 42 | public void colormanagement() 43 | { 44 | Process.Start("colorcpl"); 45 | } 46 | 47 | public void commandprompt() 48 | { 49 | Process.Start("cmd"); 50 | } 51 | 52 | public void componentservices() 53 | { 54 | Process.Start("dcomcnfg"); 55 | } 56 | 57 | public void controlpanel() 58 | { 59 | Process.Start("control"); 60 | } 61 | 62 | public void credentialmanager() 63 | { 64 | Process.Start("rundll32.exe", "keymgr.dll, KRShowKeyMgr"); 65 | } 66 | 67 | public void dataexecution() 68 | { 69 | Process.Start("systempropertiesdataexecutionprevention"); 70 | } 71 | 72 | public void defragmenter() 73 | { 74 | Process.Start("dfrgui.exe"); 75 | } 76 | 77 | public void directxdiagnosics() 78 | { 79 | Process.Start("dxdiag"); 80 | } 81 | 82 | public void display() 83 | { 84 | Process.Start("dpiscaling"); 85 | } 86 | 87 | public void driververifymanager() 88 | { 89 | Process.Start("verifier"); 90 | } 91 | 92 | public void importtocontacts() 93 | { 94 | Process.Start("wabmig"); 95 | } 96 | 97 | public void internetexplorer() 98 | { 99 | Process.Start("iexplore"); 100 | } 101 | 102 | public void languagepacks() 103 | { 104 | Process.Start("lpksetup"); 105 | } 106 | 107 | public void magnifier() 108 | { 109 | Process.Start("magnify"); 110 | } 111 | 112 | public void malicioussoftwarescan() 113 | { 114 | Process.Start("mrt"); 115 | } 116 | 117 | public void managementconsole() 118 | { 119 | Process.Start("mmc"); 120 | } 121 | 122 | public void microsoftstore() 123 | { 124 | Process.Start("ms-windows-store://publisher/?name=Microsoft Corporation"); 125 | } 126 | 127 | public void newscannerwizard() 128 | { 129 | Process.Start("wiaacmgr"); 130 | } 131 | 132 | public void onscreenkeyboard() 133 | { 134 | Process.Start("osk"); 135 | } 136 | 137 | public void performancemonitor() 138 | { 139 | Process.Start("perfmon"); 140 | } 141 | 142 | public void performanceoptions() 143 | { 144 | Process.Start("systempropertiesperformance"); 145 | } 146 | 147 | public void photosapp() 148 | { 149 | Process.Start("ms-photos://"); 150 | } 151 | 152 | public void resourcemonitor() 153 | { 154 | Process.Start("resmon"); 155 | } 156 | 157 | public void setcomputerdefaults() 158 | { 159 | Process.Start("computerdefaults"); 160 | } 161 | 162 | public void snippingtool() 163 | { 164 | Process.Start("snippingtool"); 165 | } 166 | 167 | public void stepsrecorder() 168 | { 169 | Process.Start("psr"); 170 | } 171 | 172 | public void stickynotes() 173 | { 174 | Process.Start("explorer", @"shell:AppsFolder\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe!App"); 175 | } 176 | 177 | public void syncenter() 178 | { 179 | Process.Start("mobsync"); 180 | } 181 | 182 | public void systemconfiguration() 183 | { 184 | Process.Start("msconfig"); 185 | } 186 | 187 | public void taskmanager() 188 | { 189 | Process.Start("taskmgr"); 190 | } 191 | 192 | public void taskscheduler() 193 | { 194 | Process.Start("control", "schedtasks"); 195 | } 196 | 197 | public void utilitymanager() 198 | { 199 | Process.Start("utilman"); 200 | } 201 | 202 | public void videoapp() 203 | { 204 | Process.Start("microsoftvideo://"); 205 | } 206 | 207 | public void volumemixer() 208 | { 209 | Process.Start("sndvol"); 210 | } 211 | 212 | public void windowseasytransfer() 213 | { 214 | Process.Start("migwiz"); 215 | } 216 | 217 | public void windowsexplorer() 218 | { 219 | Process.Start("explorer"); 220 | } 221 | 222 | public void windowsrepairdisc() 223 | { 224 | Process.Start("recdisc"); 225 | } 226 | 227 | public void windowsremoteassist() 228 | { 229 | Process.Start("msra"); 230 | } 231 | 232 | public void wordpad() 233 | { 234 | Process.Start("write"); 235 | } 236 | 237 | public void windowsactionmanager() 238 | { 239 | Process.Start("wscui.cpl"); 240 | } 241 | } 242 | } -------------------------------------------------------------------------------- /Ultimate Settings Panel/USP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/Ultimate Settings Panel/USP.ico -------------------------------------------------------------------------------- /Ultimate Settings Panel/Ultimate Settings Panel.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {26FA1F51-D0B0-44B5-A1FB-E0AB288DE3F8} 8 | WinExe 9 | Properties 10 | Ultimate_Settings_Panel 11 | Ultimate Settings Panel 12 | v4.5.2 13 | 512 14 | true 15 | false 16 | publish\ 17 | true 18 | Disk 19 | false 20 | Foreground 21 | 7 22 | Days 23 | false 24 | false 25 | true 26 | 0 27 | 6.6.0.%2a 28 | false 29 | true 30 | 31 | 32 | AnyCPU 33 | true 34 | full 35 | false 36 | bin\Debug\ 37 | DEBUG;TRACE 38 | prompt 39 | 4 40 | 41 | 42 | AnyCPU 43 | pdbonly 44 | true 45 | ..\Release\ 46 | TRACE 47 | prompt 48 | 4 49 | true 50 | 51 | 52 | USP.ico 53 | 54 | 55 | true 56 | ..\..\Public_Releases\Test\ 57 | DEBUG;TRACE 58 | full 59 | x64 60 | prompt 61 | MinimumRecommendedRules.ruleset 62 | true 63 | true 64 | 65 | 66 | ..\..\Public_Releases\x64\ 67 | TRACE 68 | true 69 | pdbonly 70 | x64 71 | prompt 72 | MinimumRecommendedRules.ruleset 73 | true 74 | false 75 | 76 | 77 | true 78 | ..\..\Public_Releases\x86\ 79 | DEBUG;TRACE 80 | full 81 | x86 82 | prompt 83 | MinimumRecommendedRules.ruleset 84 | true 85 | 86 | 87 | ..\..\Public_Releases\x86\ 88 | 89 | 90 | true 91 | pdbonly 92 | x86 93 | prompt 94 | MinimumRecommendedRules.ruleset 95 | true 96 | true 97 | 98 | 99 | app.manifest 100 | 101 | 102 | 103 | 104 | 105 | 106 | false 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | ..\packages\MahApps.Metro.IconPacks.Modern.1.7.1\lib\net45\MahApps.Metro.IconPacks.Modern.dll 115 | 116 | 117 | ..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll 118 | True 119 | 120 | 121 | ..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.Design.dll 122 | True 123 | 124 | 125 | ..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.Fonts.dll 126 | True 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | Form 146 | 147 | 148 | About.cs 149 | 150 | 151 | Form 152 | 153 | 154 | cmdoutput.cs 155 | 156 | 157 | 158 | Form 159 | 160 | 161 | Main.cs 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | About.cs 182 | 183 | 184 | cmdoutput.cs 185 | 186 | 187 | Main.cs 188 | 189 | 190 | ResXFileCodeGenerator 191 | Resources.Designer.cs 192 | Designer 193 | 194 | 195 | True 196 | Resources.resx 197 | True 198 | 199 | 200 | 201 | 202 | SettingsSingleFileGenerator 203 | Settings.Designer.cs 204 | 205 | 206 | True 207 | Settings.settings 208 | True 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | False 232 | Microsoft .NET Framework 4.5.2 %28x86 and x64%29 233 | true 234 | 235 | 236 | False 237 | .NET Framework 3.5 SP1 238 | false 239 | 240 | 241 | 242 | 243 | {03837500-098B-11D8-9414-505054503030} 244 | 1 245 | 0 246 | 0 247 | tlbimp 248 | False 249 | True 250 | 251 | 252 | 253 | 260 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/Ultimate Settings Panel.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 52 | 59 | 60 | 61 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/cmdoutput.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Ultimate_Settings_Panel 2 | { 3 | partial class cmdoutput 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.txtboxcmdoutput = new MetroFramework.Controls.MetroTextBox(); 32 | this.metroButton1 = new MetroFramework.Controls.MetroButton(); 33 | this.metroButton2 = new MetroFramework.Controls.MetroButton(); 34 | this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); 35 | this.SuspendLayout(); 36 | // 37 | // txtboxcmdoutput 38 | // 39 | // 40 | // 41 | // 42 | this.txtboxcmdoutput.CustomButton.Image = null; 43 | this.txtboxcmdoutput.CustomButton.Location = new System.Drawing.Point(65, 2); 44 | this.txtboxcmdoutput.CustomButton.Name = ""; 45 | this.txtboxcmdoutput.CustomButton.Size = new System.Drawing.Size(495, 495); 46 | this.txtboxcmdoutput.CustomButton.Style = MetroFramework.MetroColorStyle.Blue; 47 | this.txtboxcmdoutput.CustomButton.TabIndex = 1; 48 | this.txtboxcmdoutput.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light; 49 | this.txtboxcmdoutput.CustomButton.UseSelectable = true; 50 | this.txtboxcmdoutput.CustomButton.Visible = false; 51 | this.txtboxcmdoutput.Lines = new string[0]; 52 | this.txtboxcmdoutput.Location = new System.Drawing.Point(12, 63); 53 | this.txtboxcmdoutput.MaxLength = 32767; 54 | this.txtboxcmdoutput.Multiline = true; 55 | this.txtboxcmdoutput.Name = "txtboxcmdoutput"; 56 | this.txtboxcmdoutput.PasswordChar = '\0'; 57 | this.txtboxcmdoutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 58 | this.txtboxcmdoutput.SelectedText = ""; 59 | this.txtboxcmdoutput.SelectionLength = 0; 60 | this.txtboxcmdoutput.SelectionStart = 0; 61 | this.txtboxcmdoutput.ShortcutsEnabled = true; 62 | this.txtboxcmdoutput.Size = new System.Drawing.Size(563, 449); 63 | this.txtboxcmdoutput.TabIndex = 0; 64 | this.txtboxcmdoutput.UseSelectable = true; 65 | this.txtboxcmdoutput.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); 66 | this.txtboxcmdoutput.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel); 67 | // 68 | // metroButton1 69 | // 70 | this.metroButton1.Location = new System.Drawing.Point(359, 518); 71 | this.metroButton1.Name = "metroButton1"; 72 | this.metroButton1.Size = new System.Drawing.Size(95, 36); 73 | this.metroButton1.TabIndex = 1; 74 | this.metroButton1.Text = "Export to TXT"; 75 | this.metroButton1.UseSelectable = true; 76 | this.metroButton1.Click += new System.EventHandler(this.metroButton1_Click); 77 | // 78 | // metroButton2 79 | // 80 | this.metroButton2.Location = new System.Drawing.Point(460, 518); 81 | this.metroButton2.Name = "metroButton2"; 82 | this.metroButton2.Size = new System.Drawing.Size(95, 36); 83 | this.metroButton2.TabIndex = 2; 84 | this.metroButton2.Text = "Close"; 85 | this.metroButton2.UseSelectable = true; 86 | this.metroButton2.Click += new System.EventHandler(this.metroButton2_Click); 87 | // 88 | // cmdoutput 89 | // 90 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 91 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 92 | this.ClientSize = new System.Drawing.Size(587, 561); 93 | this.Controls.Add(this.metroButton2); 94 | this.Controls.Add(this.metroButton1); 95 | this.Controls.Add(this.txtboxcmdoutput); 96 | this.Name = "cmdoutput"; 97 | this.Text = "Command Output"; 98 | this.ResumeLayout(false); 99 | 100 | } 101 | 102 | #endregion 103 | 104 | private MetroFramework.Controls.MetroTextBox txtboxcmdoutput; 105 | private MetroFramework.Controls.MetroButton metroButton1; 106 | private MetroFramework.Controls.MetroButton metroButton2; 107 | private System.Windows.Forms.SaveFileDialog saveFileDialog; 108 | } 109 | } -------------------------------------------------------------------------------- /Ultimate Settings Panel/cmdoutput.cs: -------------------------------------------------------------------------------- 1 | using MetroFramework.Forms; 2 | using System; 3 | using System.IO; 4 | using System.Windows.Forms; 5 | using MetroFramework; 6 | 7 | namespace Ultimate_Settings_Panel 8 | { 9 | public partial class cmdoutput : MetroForm 10 | { 11 | public cmdoutput(string ipconfigoutput) 12 | { 13 | InitializeComponent(); 14 | txtboxcmdoutput.Text = ipconfigoutput; 15 | } 16 | 17 | private void metroButton1_Click(object sender, EventArgs e) 18 | { 19 | exporttotxt(); 20 | } 21 | 22 | private void metroButton2_Click(object sender, EventArgs e) 23 | { 24 | this.Close(); 25 | this.Dispose(); 26 | } 27 | public void exporttotxt() 28 | { 29 | try 30 | { 31 | saveFileDialog.Title = "Save Image"; 32 | saveFileDialog.Filter = "Text File|*.txt"; 33 | saveFileDialog.FilterIndex = 1; 34 | if (saveFileDialog.ShowDialog() == DialogResult.OK) 35 | { 36 | if (saveFileDialog.FileName == "") 37 | { 38 | return; 39 | } 40 | else 41 | { 42 | File.WriteAllText(saveFileDialog.FileName, txtboxcmdoutput.Text); 43 | } 44 | } 45 | else 46 | { 47 | // Nothing 48 | } 49 | } 50 | catch (Exception ex) 51 | { 52 | MetroMessageBox.Show(this, ex.Message.ToString(), "Export Error"); 53 | } 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/cmdoutput.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | -------------------------------------------------------------------------------- /Ultimate Settings Panel/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/MahApps.Metro.IconPacks.Modern.1.7.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/MahApps.Metro.IconPacks.Modern.1.7.1.nupkg -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net40/MahApps.Metro.IconPacks.Modern.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MahApps.Metro.IconPacks.Modern 5 | 6 | 7 | 8 | 9 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleX value of a ScaleTransformation. 10 | 11 | 12 | 13 | 14 | 15 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleY value of a ScaleTransformation. 16 | 17 | 18 | 19 | 20 | 21 | MarkupConverter is a MarkupExtension which can be used for ValueConverter. 22 | 23 | 24 | 25 | 26 | 27 | 28 | Converts a value. 29 | 30 | The value produced by the binding source. 31 | The type of the binding target property. 32 | The converter parameter to use. 33 | The culture to use in the converter. 34 | A converted value. If the method returns null, the valid null value is used. 35 | 36 | 37 | 38 | Converts a value. 39 | 40 | The value that is produced by the binding target. 41 | The type to convert to. 42 | The converter parameter to use. 43 | The culture to use in the converter. 44 | A converted value. If the method returns null, the valid null value is used. 45 | 46 | 47 | 48 | Enum PackIconFlipOrientation for the Flip property of the PackIcon 49 | 50 | 51 | 52 | 53 | No flip 54 | 55 | 56 | 57 | 58 | Flip the icon horizontal 59 | 60 | 61 | 62 | 63 | Flip the icon vertical 64 | 65 | 66 | 67 | 68 | Flip the icon vertical and horizontal 69 | 70 | 71 | 72 | 73 | Class PackIcon which is the custom base class of MahApps.Metro.IconPacks. 74 | 75 | The type of the enum kind. 76 | 77 | 78 | 79 | 80 | Identifies the Flip dependency property. 81 | 82 | 83 | 84 | 85 | Gets or sets the flip orientation. 86 | 87 | 88 | 89 | 90 | Identifies the Rotation dependency property. 91 | 92 | 93 | 94 | 95 | Gets or sets the rotation (angle). 96 | 97 | The rotation. 98 | 99 | 100 | 101 | Identifies the Spin dependency property. 102 | 103 | 104 | 105 | 106 | Gets or sets a value indicating whether the inner icon is spinning. 107 | 108 | true if spin; otherwise, false. 109 | 110 | 111 | 112 | Identifies the SpinDuration dependency property. 113 | 114 | 115 | 116 | 117 | Gets or sets the duration of the spinning animation (in seconds). This will also restart the spin animation. 118 | 119 | The duration of the spin in seconds. 120 | 121 | 122 | 123 | Identifies the SpinEasingFunction dependency property. 124 | 125 | 126 | 127 | 128 | Gets or sets the EasingFunction of the spinning animation. This will also restart the spin animation. 129 | 130 | The spin easing function. 131 | 132 | 133 | 134 | Identifies the SpinAutoReverse dependency property. 135 | 136 | 137 | 138 | 139 | Gets or sets the AutoReverse of the spinning animation. This will also restart the spin animation. 140 | 141 | true if [spin automatic reverse]; otherwise, false. 142 | 143 | 144 | 145 | Icons from the Modern UI Icons project, http://modernuiicons.com. 146 | 147 | 148 | 149 | ****************************************** 150 | This code is auto generated. Do not amend. 151 | ****************************************** 152 | 153 | 154 | ****************************************** 155 | This code is auto generated. Do not amend. 156 | ****************************************** 157 | 158 | List of available icons for use with . 159 | 160 | 161 | All icons sourced from Modern UI Icons Font - http://modernuiicons.com - in accordance of 162 | https://github.com/Templarian/WindowsIcons/blob/master/WindowsPhone/license.txt. 163 | 164 | 165 | 166 | 167 | A strongly-typed resource class, for looking up localized strings, etc. 168 | 169 | 170 | 171 | 172 | Returns the cached ResourceManager instance used by this class. 173 | 174 | 175 | 176 | 177 | Overrides the current thread's CurrentUICulture property for all 178 | resource lookups using this strongly typed resource class. 179 | 180 | 181 | 182 | 183 | Base class for creating an icon control for icon packs. 184 | 185 | 186 | 187 | 188 | 189 | Inheritors should provide a factory for setting up the path data index (per icon kind). 190 | The factory will only be utilised once, across all closed instances (first instantiation wins). 191 | 192 | 193 | 194 | 195 | Gets or sets the icon to display. 196 | 197 | 198 | 199 | 200 | Gets the icon path data for the current . 201 | 202 | 203 | 204 | 205 | GeneratedInternalTypeHelper 206 | 207 | 208 | 209 | 210 | CreateInstance 211 | 212 | 213 | 214 | 215 | GetPropertyValue 216 | 217 | 218 | 219 | 220 | SetPropertyValue 221 | 222 | 223 | 224 | 225 | CreateDelegate 226 | 227 | 228 | 229 | 230 | AddEventHandler 231 | 232 | 233 | 234 | 235 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net40/MahApps.Metro.IconPacks.Modern.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net40/MahApps.Metro.IconPacks.Modern.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net40/MahApps.Metro.IconPacks.Modern.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net40/MahApps.Metro.IconPacks.Modern.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net45/MahApps.Metro.IconPacks.Modern.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MahApps.Metro.IconPacks.Modern 5 | 6 | 7 | 8 | 9 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleX value of a ScaleTransformation. 10 | 11 | 12 | 13 | 14 | 15 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleY value of a ScaleTransformation. 16 | 17 | 18 | 19 | 20 | 21 | MarkupConverter is a MarkupExtension which can be used for ValueConverter. 22 | 23 | 24 | 25 | 26 | 27 | 28 | Converts a value. 29 | 30 | The value produced by the binding source. 31 | The type of the binding target property. 32 | The converter parameter to use. 33 | The culture to use in the converter. 34 | A converted value. If the method returns null, the valid null value is used. 35 | 36 | 37 | 38 | Converts a value. 39 | 40 | The value that is produced by the binding target. 41 | The type to convert to. 42 | The converter parameter to use. 43 | The culture to use in the converter. 44 | A converted value. If the method returns null, the valid null value is used. 45 | 46 | 47 | 48 | Enum PackIconFlipOrientation for the Flip property of the PackIcon 49 | 50 | 51 | 52 | 53 | No flip 54 | 55 | 56 | 57 | 58 | Flip the icon horizontal 59 | 60 | 61 | 62 | 63 | Flip the icon vertical 64 | 65 | 66 | 67 | 68 | Flip the icon vertical and horizontal 69 | 70 | 71 | 72 | 73 | Class PackIcon which is the custom base class of MahApps.Metro.IconPacks. 74 | 75 | The type of the enum kind. 76 | 77 | 78 | 79 | 80 | Identifies the Flip dependency property. 81 | 82 | 83 | 84 | 85 | Gets or sets the flip orientation. 86 | 87 | 88 | 89 | 90 | Identifies the Rotation dependency property. 91 | 92 | 93 | 94 | 95 | Gets or sets the rotation (angle). 96 | 97 | The rotation. 98 | 99 | 100 | 101 | Identifies the Spin dependency property. 102 | 103 | 104 | 105 | 106 | Gets or sets a value indicating whether the inner icon is spinning. 107 | 108 | true if spin; otherwise, false. 109 | 110 | 111 | 112 | Identifies the SpinDuration dependency property. 113 | 114 | 115 | 116 | 117 | Gets or sets the duration of the spinning animation (in seconds). This will also restart the spin animation. 118 | 119 | The duration of the spin in seconds. 120 | 121 | 122 | 123 | Identifies the SpinEasingFunction dependency property. 124 | 125 | 126 | 127 | 128 | Gets or sets the EasingFunction of the spinning animation. This will also restart the spin animation. 129 | 130 | The spin easing function. 131 | 132 | 133 | 134 | Identifies the SpinAutoReverse dependency property. 135 | 136 | 137 | 138 | 139 | Gets or sets the AutoReverse of the spinning animation. This will also restart the spin animation. 140 | 141 | true if [spin automatic reverse]; otherwise, false. 142 | 143 | 144 | 145 | Icons from the Modern UI Icons project, http://modernuiicons.com. 146 | 147 | 148 | 149 | ****************************************** 150 | This code is auto generated. Do not amend. 151 | ****************************************** 152 | 153 | 154 | ****************************************** 155 | This code is auto generated. Do not amend. 156 | ****************************************** 157 | 158 | List of available icons for use with . 159 | 160 | 161 | All icons sourced from Modern UI Icons Font - http://modernuiicons.com - in accordance of 162 | https://github.com/Templarian/WindowsIcons/blob/master/WindowsPhone/license.txt. 163 | 164 | 165 | 166 | 167 | A strongly-typed resource class, for looking up localized strings, etc. 168 | 169 | 170 | 171 | 172 | Returns the cached ResourceManager instance used by this class. 173 | 174 | 175 | 176 | 177 | Overrides the current thread's CurrentUICulture property for all 178 | resource lookups using this strongly typed resource class. 179 | 180 | 181 | 182 | 183 | Base class for creating an icon control for icon packs. 184 | 185 | 186 | 187 | 188 | 189 | Inheritors should provide a factory for setting up the path data index (per icon kind). 190 | The factory will only be utilised once, across all closed instances (first instantiation wins). 191 | 192 | 193 | 194 | 195 | Gets or sets the icon to display. 196 | 197 | 198 | 199 | 200 | Gets the icon path data for the current . 201 | 202 | 203 | 204 | 205 | GeneratedInternalTypeHelper 206 | 207 | 208 | 209 | 210 | CreateInstance 211 | 212 | 213 | 214 | 215 | GetPropertyValue 216 | 217 | 218 | 219 | 220 | SetPropertyValue 221 | 222 | 223 | 224 | 225 | CreateDelegate 226 | 227 | 228 | 229 | 230 | AddEventHandler 231 | 232 | 233 | 234 | 235 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net45/MahApps.Metro.IconPacks.Modern.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net45/MahApps.Metro.IconPacks.Modern.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net45/MahApps.Metro.IconPacks.Modern.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net45/MahApps.Metro.IconPacks.Modern.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net46/MahApps.Metro.IconPacks.Modern.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MahApps.Metro.IconPacks.Modern 5 | 6 | 7 | 8 | 9 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleX value of a ScaleTransformation. 10 | 11 | 12 | 13 | 14 | 15 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleY value of a ScaleTransformation. 16 | 17 | 18 | 19 | 20 | 21 | MarkupConverter is a MarkupExtension which can be used for ValueConverter. 22 | 23 | 24 | 25 | 26 | 27 | 28 | Converts a value. 29 | 30 | The value produced by the binding source. 31 | The type of the binding target property. 32 | The converter parameter to use. 33 | The culture to use in the converter. 34 | A converted value. If the method returns null, the valid null value is used. 35 | 36 | 37 | 38 | Converts a value. 39 | 40 | The value that is produced by the binding target. 41 | The type to convert to. 42 | The converter parameter to use. 43 | The culture to use in the converter. 44 | A converted value. If the method returns null, the valid null value is used. 45 | 46 | 47 | 48 | Enum PackIconFlipOrientation for the Flip property of the PackIcon 49 | 50 | 51 | 52 | 53 | No flip 54 | 55 | 56 | 57 | 58 | Flip the icon horizontal 59 | 60 | 61 | 62 | 63 | Flip the icon vertical 64 | 65 | 66 | 67 | 68 | Flip the icon vertical and horizontal 69 | 70 | 71 | 72 | 73 | Class PackIcon which is the custom base class of MahApps.Metro.IconPacks. 74 | 75 | The type of the enum kind. 76 | 77 | 78 | 79 | 80 | Identifies the Flip dependency property. 81 | 82 | 83 | 84 | 85 | Gets or sets the flip orientation. 86 | 87 | 88 | 89 | 90 | Identifies the Rotation dependency property. 91 | 92 | 93 | 94 | 95 | Gets or sets the rotation (angle). 96 | 97 | The rotation. 98 | 99 | 100 | 101 | Identifies the Spin dependency property. 102 | 103 | 104 | 105 | 106 | Gets or sets a value indicating whether the inner icon is spinning. 107 | 108 | true if spin; otherwise, false. 109 | 110 | 111 | 112 | Identifies the SpinDuration dependency property. 113 | 114 | 115 | 116 | 117 | Gets or sets the duration of the spinning animation (in seconds). This will also restart the spin animation. 118 | 119 | The duration of the spin in seconds. 120 | 121 | 122 | 123 | Identifies the SpinEasingFunction dependency property. 124 | 125 | 126 | 127 | 128 | Gets or sets the EasingFunction of the spinning animation. This will also restart the spin animation. 129 | 130 | The spin easing function. 131 | 132 | 133 | 134 | Identifies the SpinAutoReverse dependency property. 135 | 136 | 137 | 138 | 139 | Gets or sets the AutoReverse of the spinning animation. This will also restart the spin animation. 140 | 141 | true if [spin automatic reverse]; otherwise, false. 142 | 143 | 144 | 145 | Icons from the Modern UI Icons project, http://modernuiicons.com. 146 | 147 | 148 | 149 | ****************************************** 150 | This code is auto generated. Do not amend. 151 | ****************************************** 152 | 153 | 154 | ****************************************** 155 | This code is auto generated. Do not amend. 156 | ****************************************** 157 | 158 | List of available icons for use with . 159 | 160 | 161 | All icons sourced from Modern UI Icons Font - http://modernuiicons.com - in accordance of 162 | https://github.com/Templarian/WindowsIcons/blob/master/WindowsPhone/license.txt. 163 | 164 | 165 | 166 | 167 | A strongly-typed resource class, for looking up localized strings, etc. 168 | 169 | 170 | 171 | 172 | Returns the cached ResourceManager instance used by this class. 173 | 174 | 175 | 176 | 177 | Overrides the current thread's CurrentUICulture property for all 178 | resource lookups using this strongly typed resource class. 179 | 180 | 181 | 182 | 183 | Base class for creating an icon control for icon packs. 184 | 185 | 186 | 187 | 188 | 189 | Inheritors should provide a factory for setting up the path data index (per icon kind). 190 | The factory will only be utilised once, across all closed instances (first instantiation wins). 191 | 192 | 193 | 194 | 195 | Gets or sets the icon to display. 196 | 197 | 198 | 199 | 200 | Gets the icon path data for the current . 201 | 202 | 203 | 204 | 205 | GeneratedInternalTypeHelper 206 | 207 | 208 | 209 | 210 | CreateInstance 211 | 212 | 213 | 214 | 215 | GetPropertyValue 216 | 217 | 218 | 219 | 220 | SetPropertyValue 221 | 222 | 223 | 224 | 225 | CreateDelegate 226 | 227 | 228 | 229 | 230 | AddEventHandler 231 | 232 | 233 | 234 | 235 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net46/MahApps.Metro.IconPacks.Modern.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net46/MahApps.Metro.IconPacks.Modern.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net46/MahApps.Metro.IconPacks.Modern.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/net46/MahApps.Metro.IconPacks.Modern.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.pri -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MahApps.Metro.IconPacks.Core 5 | 6 | 7 | 8 | 9 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleX value of a ScaleTransformation. 10 | 11 | 12 | 13 | 14 | ValueConverter which converts the PackIconFlipOrientation enumeration value to ScaleY value of a ScaleTransformation. 15 | 16 | 17 | 18 | 19 | Enum PackIconFlipOrientation for the Flip property of the PackIcon 20 | 21 | 22 | 23 | 24 | No flip 25 | 26 | 27 | 28 | 29 | Flip the icon horizontal 30 | 31 | 32 | 33 | 34 | Flip the icon vertical 35 | 36 | 37 | 38 | 39 | Flip the icon vertical and horizontal 40 | 41 | 42 | 43 | 44 | Class PackIcon which is the custom base class of MahApps.Metro.IconPacks. 45 | 46 | The type of the enum kind. 47 | 48 | 49 | 50 | 51 | Identifies the Flip dependency property. 52 | 53 | 54 | 55 | 56 | Gets or sets the flip orientation. 57 | 58 | 59 | 60 | 61 | Identifies the Rotation dependency property. 62 | 63 | 64 | 65 | 66 | Gets or sets the rotation (angle). 67 | 68 | The rotation. 69 | 70 | 71 | 72 | Identifies the Spin dependency property. 73 | 74 | 75 | 76 | 77 | Gets or sets a value indicating whether the inner icon is spinning. 78 | 79 | true if spin; otherwise, false. 80 | 81 | 82 | 83 | Identifies the SpinDuration dependency property. 84 | 85 | 86 | 87 | 88 | Gets or sets the duration of the spinning animation (in seconds). This will also restart the spin animation. 89 | 90 | The duration of the spin in seconds. 91 | 92 | 93 | 94 | Identifies the SpinEasingFunction dependency property. 95 | 96 | 97 | 98 | 99 | Gets or sets the EasingFunction of the spinning animation. This will also restart the spin animation. 100 | 101 | The spin easing function. 102 | 103 | 104 | 105 | Identifies the SpinAutoReverse dependency property. 106 | 107 | 108 | 109 | 110 | Gets or sets the AutoReverse of the spinning animation. This will also restart the spin animation. 111 | 112 | true if [spin automatic reverse]; otherwise, false. 113 | 114 | 115 | 116 | Specifies a description for a property or event. 117 | 118 | 119 | 120 | 121 | Gets the description stored in this attribute. 122 | 123 | 124 | 125 | 126 | Initializes a new instance of the DescriptionAttribute class with a description. 127 | 128 | The description text. 129 | 130 | 131 | 132 | GetXamlType(Type) 133 | 134 | 135 | 136 | 137 | GetXamlType(String) 138 | 139 | 140 | 141 | 142 | GetXmlnsDefinitions() 143 | 144 | 145 | 146 | 147 | Base class for creating an icon control for icon packs. 148 | 149 | 150 | 151 | 152 | 153 | Inheritors should provide a factory for setting up the path data index (per icon kind). 154 | The factory will only be utilised once, across all closed instances (first instantiation wins). 155 | 156 | 157 | 158 | 159 | Gets or sets the icon to display. 160 | 161 | 162 | 163 | 164 | Gets the icon path data for the current . 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core/Converter/Converters.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Core/MahApps.Metro.IconPacks.Core.xr.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MahApps.Metro.IconPacks.Modern 5 | 6 | 7 | 8 | 9 | Icons from the Modern UI Icons project, http://modernuiicons.com. 10 | 11 | 12 | 13 | ****************************************** 14 | This code is auto generated. Do not amend. 15 | ****************************************** 16 | 17 | 18 | ****************************************** 19 | This code is auto generated. Do not amend. 20 | ****************************************** 21 | 22 | List of available icons for use with . 23 | 24 | 25 | All icons sourced from Modern UI Icons Font - http://modernuiicons.com - in accordance of 26 | https://github.com/Templarian/WindowsIcons/blob/master/WindowsPhone/license.txt. 27 | 28 | 29 | 30 | 31 | GetXamlType(Type) 32 | 33 | 34 | 35 | 36 | GetXamlType(String) 37 | 38 | 39 | 40 | 41 | GetXmlnsDefinitions() 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern.pri -------------------------------------------------------------------------------- /packages/MahApps.Metro.IconPacks.Modern.1.7.1/lib/uap10.0/MahApps.Metro.IconPacks.Modern/Themes/Generic.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/MetroFramework.1.2.0.3/Content/MetroFramework.txt: -------------------------------------------------------------------------------- 1 | MetroFramework - Modern UI for WinForms 2 | 3 | Copyright (c) 2013 Jens Thiel, http://thielj.github.io/MetroFramework 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in the 7 | Software without restriction, including without limitation the rights to use, copy, 8 | modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, 9 | and to permit persons to whom the Software is furnished to do so, subject to the 10 | following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 16 | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 17 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 18 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 19 | CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 20 | OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | 22 | 23 | Portions of this software are: 24 | 25 | Copyright (c) 2011 Sven Walter, http://github.com/viperneo 26 | -------------------------------------------------------------------------------- /packages/MetroFramework.1.2.0.3/MetroFramework.1.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.1.2.0.3/MetroFramework.1.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/MetroFramework.1.2.0.3/README.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | NOTE: 4 | 5 | To make use of designers, you must reference both MetroFramework.dll and MetroFramework.Design.dll 6 | from your project. I recommend to change the properties for the Design dll to "Copy local: false" 7 | as you do not need to redistribute it. This also helps to make your application independent of 8 | System.Design.dll and compatible with the .NET client profile, a subset of the full .NET framework. 9 | 10 | Project Site: http://thielj.github.io/MetroFramework 11 | -------------------------------------------------------------------------------- /packages/MetroFramework.Design.1.2.0.3/MetroFramework.Design.1.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.Design.1.2.0.3/MetroFramework.Design.1.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/MetroFramework.Design.1.2.0.3/README.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | NOTE: 4 | 5 | To make use of designers, you must reference both MetroFramework.dll and MetroFramework.Design.dll 6 | from your project. I recommend to change the properties for the Design dll to "Copy local: false" 7 | as you do not need to redistribute it. This also helps to make your application independent of 8 | System.Design.dll and compatible with the .NET client profile, a subset of the full .NET framework. 9 | 10 | Project Site: http://thielj.github.io/MetroFramework 11 | -------------------------------------------------------------------------------- /packages/MetroFramework.Design.1.2.0.3/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | foreach ($reference in $project.Object.References) 4 | { 5 | if($reference.Name -eq "MetroFramework.Design") 6 | { 7 | $reference.CopyLocal = $false; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /packages/MetroFramework.Design.1.2.0.3/lib/net40/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.Design.1.2.0.3/lib/net40/MetroFramework.Design.dll -------------------------------------------------------------------------------- /packages/MetroFramework.Fonts.1.2.0.3/MetroFramework.Fonts.1.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.Fonts.1.2.0.3/MetroFramework.Fonts.1.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/MetroFramework.Fonts.1.2.0.3/README.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | NOTE: 4 | 5 | To make use of designers, you must reference both MetroFramework.dll and MetroFramework.Design.dll 6 | from your project. I recommend to change the properties for the Design dll to "Copy local: false" 7 | as you do not need to redistribute it. This also helps to make your application independent of 8 | System.Design.dll and compatible with the .NET client profile, a subset of the full .NET framework. 9 | 10 | Project Site: http://thielj.github.io/MetroFramework 11 | -------------------------------------------------------------------------------- /packages/MetroFramework.Fonts.1.2.0.3/lib/net40/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.Fonts.1.2.0.3/lib/net40/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /packages/MetroFramework.RunTime.1.2.0.3/MetroFramework.RunTime.1.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.RunTime.1.2.0.3/MetroFramework.RunTime.1.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/MetroFramework.RunTime.1.2.0.3/README.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | NOTE: 4 | 5 | To make use of designers, you must reference both MetroFramework.dll and MetroFramework.Design.dll 6 | from your project. I recommend to change the properties for the Design dll to "Copy local: false" 7 | as you do not need to redistribute it. This also helps to make your application independent of 8 | System.Design.dll and compatible with the .NET client profile, a subset of the full .NET framework. 9 | 10 | Project Site: http://thielj.github.io/MetroFramework 11 | -------------------------------------------------------------------------------- /packages/MetroFramework.RunTime.1.2.0.3/lib/net40-Client/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroFramework.RunTime.1.2.0.3/lib/net40-Client/MetroFramework.dll -------------------------------------------------------------------------------- /packages/MetroModernUI.1.4.0.0/MetroModernUI.1.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroModernUI.1.4.0.0/MetroModernUI.1.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Design.dll -------------------------------------------------------------------------------- /packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techygeekshome/ultimate-settings-panel/c94572d47418fbeddfa45e7008191a067736fc4e/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.dll --------------------------------------------------------------------------------