diff --git a/SuperWash.sln b/SuperSAD.sln similarity index 87% rename from SuperWash.sln rename to SuperSAD.sln index 8f6e6fd..59799f1 100644 --- a/SuperWash.sln +++ b/SuperSAD.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.28307.168 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperWash", "SuperWash\SuperWash.csproj", "{01C73168-DC4A-4B7E-A7F4-CA34298BE2DF}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperSAD", "SuperSAD\SuperSAD.csproj", "{01C73168-DC4A-4B7E-A7F4-CA34298BE2DF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/SuperWash/App.config b/SuperSAD/App.config similarity index 100% rename from SuperWash/App.config rename to SuperSAD/App.config diff --git a/SuperWash/Main.Designer.cs b/SuperSAD/Main.Designer.cs similarity index 81% rename from SuperWash/Main.Designer.cs rename to SuperSAD/Main.Designer.cs index 2068571..e7f7a8b 100644 --- a/SuperWash/Main.Designer.cs +++ b/SuperSAD/Main.Designer.cs @@ -1,4 +1,4 @@ -namespace SuperWash +namespace SuperSAD { partial class Main { @@ -29,7 +29,7 @@ protected override void Dispose(bool disposing) private void InitializeComponent() { this.usersList = new System.Windows.Forms.ListBox(); - this.washBtn = new System.Windows.Forms.Button(); + this.deleteBtn = new System.Windows.Forms.Button(); this.deletingGif = new System.Windows.Forms.PictureBox(); this.gifShadow = new System.Windows.Forms.Panel(); ((System.ComponentModel.ISupportInitialize)(this.deletingGif)).BeginInit(); @@ -52,17 +52,17 @@ private void InitializeComponent() // // washBtn // - this.washBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + this.deleteBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.washBtn.FlatStyle = System.Windows.Forms.FlatStyle.System; - this.washBtn.Location = new System.Drawing.Point(0, 247); - this.washBtn.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); - this.washBtn.Name = "washBtn"; - this.washBtn.Size = new System.Drawing.Size(324, 53); - this.washBtn.TabIndex = 2; - this.washBtn.Text = "Wash"; - this.washBtn.UseVisualStyleBackColor = true; - this.washBtn.Click += new System.EventHandler(this.washBtn_Click); + this.deleteBtn.FlatStyle = System.Windows.Forms.FlatStyle.System; + this.deleteBtn.Location = new System.Drawing.Point(0, 247); + this.deleteBtn.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); + this.deleteBtn.Name = "washBtn"; + this.deleteBtn.Size = new System.Drawing.Size(324, 53); + this.deleteBtn.TabIndex = 2; + this.deleteBtn.Text = "Delete"; + this.deleteBtn.UseVisualStyleBackColor = true; + this.deleteBtn.Click += new System.EventHandler(this.deleteBtn_Click); // // deletingGif // @@ -70,7 +70,7 @@ private void InitializeComponent() this.deletingGif.BackColor = System.Drawing.Color.White; this.deletingGif.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.deletingGif.Enabled = false; - this.deletingGif.Image = global::SuperWash.Properties.Resources.delete; + this.deletingGif.Image = global::SuperSAD.Properties.Resources.delete; this.deletingGif.Location = new System.Drawing.Point(10, 93); this.deletingGif.Name = "deletingGif"; this.deletingGif.Size = new System.Drawing.Size(304, 60); @@ -92,7 +92,7 @@ private void InitializeComponent() this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(324, 300); this.Controls.Add(this.usersList); - this.Controls.Add(this.washBtn); + this.Controls.Add(this.deleteBtn); this.Controls.Add(this.deletingGif); this.Controls.Add(this.gifShadow); this.Font = new System.Drawing.Font("MS UI Gothic", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); @@ -101,7 +101,7 @@ private void InitializeComponent() this.MinimizeBox = false; this.Name = "Main"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "SuperWash"; + this.Text = "SuperSAD"; this.Load += new System.EventHandler(this.Main_Load); ((System.ComponentModel.ISupportInitialize)(this.deletingGif)).EndInit(); this.ResumeLayout(false); @@ -111,7 +111,7 @@ private void InitializeComponent() #endregion private System.Windows.Forms.ListBox usersList; - private System.Windows.Forms.Button washBtn; + private System.Windows.Forms.Button deleteBtn; private System.Windows.Forms.PictureBox deletingGif; private System.Windows.Forms.Panel gifShadow; } diff --git a/SuperWash/Main.cs b/SuperSAD/Main.cs similarity index 93% rename from SuperWash/Main.cs rename to SuperSAD/Main.cs index beb5e11..dc5aee0 100644 --- a/SuperWash/Main.cs +++ b/SuperSAD/Main.cs @@ -5,7 +5,7 @@ using System.Windows.Forms; using System.Runtime.InteropServices; -namespace SuperWash +namespace SuperSAD { public partial class Main : Form { @@ -47,9 +47,9 @@ private void EnumerateUsers() } } } - private async void washBtn_Click(object sender, EventArgs e) + private async void deleteBtn_Click(object sender, EventArgs e) { - washBtn.Enabled = false; + deleteBtn.Enabled = false; usersList.Enabled = false; gifShadow.BringToFront(); deletingGif.BringToFront(); @@ -62,17 +62,17 @@ private async void washBtn_Click(object sender, EventArgs e) foreach (int index in indexList) { usersList.SelectedItem = profileNameList[index]; - Text = "Deleting: " + profileNameList[index] + "... (SuperWash)"; + Text = "Deleting: " + profileNameList[index] + "... (SuperSAD)"; await DeleteSelectIndex(index); usersList.Items.Remove(profileNameList[index]); } EnumerateUsers(); - Text = "SuperWash"; + Text = "SuperSAD"; deletingGif.Enabled = false; gifShadow.SendToBack(); deletingGif.SendToBack(); usersList.Enabled = true; - washBtn.Enabled = true; + deleteBtn.Enabled = true; } private Task DeleteSelectIndex(int index) { diff --git a/SuperWash/Main.resx b/SuperSAD/Main.resx similarity index 100% rename from SuperWash/Main.resx rename to SuperSAD/Main.resx diff --git a/SuperWash/Program.cs b/SuperSAD/Program.cs similarity index 96% rename from SuperWash/Program.cs rename to SuperSAD/Program.cs index 7fbc301..9195fee 100644 --- a/SuperWash/Program.cs +++ b/SuperSAD/Program.cs @@ -4,7 +4,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace SuperWash +namespace SuperSAD { static class Program { diff --git a/SuperWash/Properties/AssemblyInfo.cs b/SuperSAD/Properties/AssemblyInfo.cs similarity index 89% rename from SuperWash/Properties/AssemblyInfo.cs rename to SuperSAD/Properties/AssemblyInfo.cs index 0786fc1..36c7232 100644 --- a/SuperWash/Properties/AssemblyInfo.cs +++ b/SuperSAD/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("SuperWash - Batch Profile Clearing Tool")] -[assembly: AssemblyDescription("SuperWash")] +[assembly: AssemblyTitle("SuperSAD - Super Account Delete")] +[assembly: AssemblyDescription("SuperSAD")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Dylan Bickerstaff")] -[assembly: AssemblyProduct("SuperWash")] +[assembly: AssemblyProduct("SuperSAD")] [assembly: AssemblyCopyright("Copyright © 2019")] [assembly: AssemblyTrademark("Dylan Bickerstaff")] [assembly: AssemblyCulture("")] diff --git a/SuperWash/Properties/Resources.Designer.cs b/SuperSAD/Properties/Resources.Designer.cs similarity index 94% rename from SuperWash/Properties/Resources.Designer.cs rename to SuperSAD/Properties/Resources.Designer.cs index c7073ca..2edc420 100644 --- a/SuperWash/Properties/Resources.Designer.cs +++ b/SuperSAD/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace SuperWash.Properties { +namespace SuperSAD.Properties { using System; @@ -19,7 +19,7 @@ namespace SuperWash.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -39,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SuperWash.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SuperSAD.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/SuperWash/Properties/Resources.resx b/SuperSAD/Properties/Resources.resx similarity index 98% rename from SuperWash/Properties/Resources.resx rename to SuperSAD/Properties/Resources.resx index 45569f4..4d10fdb 100644 --- a/SuperWash/Properties/Resources.resx +++ b/SuperSAD/Properties/Resources.resx @@ -119,7 +119,7 @@ - ..\Resources\delete.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\resources\delete.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a diff --git a/SuperWash/Properties/app.manifest b/SuperSAD/Properties/app.manifest similarity index 100% rename from SuperWash/Properties/app.manifest rename to SuperSAD/Properties/app.manifest diff --git a/SuperWash/Resources/delete.gif b/SuperSAD/Resources/delete.gif similarity index 100% rename from SuperWash/Resources/delete.gif rename to SuperSAD/Resources/delete.gif diff --git a/SuperWash/Resources/icon.ico b/SuperSAD/Resources/icon.ico similarity index 100% rename from SuperWash/Resources/icon.ico rename to SuperSAD/Resources/icon.ico diff --git a/SuperWash/SuperWash.csproj b/SuperSAD/SuperSAD.csproj similarity index 89% rename from SuperWash/SuperWash.csproj rename to SuperSAD/SuperSAD.csproj index 9a465ea..7293df1 100644 --- a/SuperWash/SuperWash.csproj +++ b/SuperSAD/SuperSAD.csproj @@ -6,8 +6,8 @@ AnyCPU {01C73168-DC4A-4B7E-A7F4-CA34298BE2DF} WinExe - SuperWash - SuperWash + SuperSAD + SuperSAD v4.6.1 512 true @@ -85,15 +85,6 @@ Warning.cs - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - diff --git a/SuperWash/Warning.Designer.cs b/SuperSAD/Warning.Designer.cs similarity index 96% rename from SuperWash/Warning.Designer.cs rename to SuperSAD/Warning.Designer.cs index fad9d9a..bf064bf 100644 --- a/SuperWash/Warning.Designer.cs +++ b/SuperSAD/Warning.Designer.cs @@ -1,4 +1,4 @@ -namespace SuperWash +namespace SuperSAD { partial class Warning { @@ -56,9 +56,9 @@ private void InitializeComponent() this.titleLbl.Location = new System.Drawing.Point(122, 21); this.titleLbl.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.titleLbl.Name = "titleLbl"; - this.titleLbl.Size = new System.Drawing.Size(125, 21); + this.titleLbl.Size = new System.Drawing.Size(117, 21); this.titleLbl.TabIndex = 1; - this.titleLbl.Text = "Super Wash"; + this.titleLbl.Text = "Super SAD"; // // RTB // @@ -113,7 +113,7 @@ private void InitializeComponent() this.MinimizeBox = false; this.Name = "Warning"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "SuperWash: Warning!"; + this.Text = "SuperSAD: Warning!"; this.Load += new System.EventHandler(this.Warning_Load); ((System.ComponentModel.ISupportInitialize)(this.logoBox)).EndInit(); this.ResumeLayout(false); diff --git a/SuperWash/Warning.cs b/SuperSAD/Warning.cs similarity index 97% rename from SuperWash/Warning.cs rename to SuperSAD/Warning.cs index dc8996c..815c657 100644 --- a/SuperWash/Warning.cs +++ b/SuperSAD/Warning.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace SuperWash +namespace SuperSAD { public partial class Warning : Form { diff --git a/SuperWash/Warning.resx b/SuperSAD/Warning.resx similarity index 92% rename from SuperWash/Warning.resx rename to SuperSAD/Warning.resx index 7253fa5..3b9e06e 100644 --- a/SuperWash/Warning.resx +++ b/SuperSAD/Warning.resx @@ -121,6 +121,9 @@ 17, 17 - Warning! Super Wash is a program designed to batch remove Windows User Accounts via native Windows methods. This prompt is the only warning. Pressing "Wash" on the next screen will run the deletion without further consent. Please proceed with caution! + Warning! Super SAD is a program designed to batch remove Windows User Accounts via native Windows methods. This prompt is the only warning. Pressing "Delete" on the next screen will run the deletion without further consent. Please proceed with caution! + + 17, 17 + \ No newline at end of file diff --git a/SuperWash/Properties/Settings.Designer.cs b/SuperWash/Properties/Settings.Designer.cs deleted file mode 100644 index 69c45ae..0000000 --- a/SuperWash/Properties/Settings.Designer.cs +++ /dev/null @@ -1,30 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace SuperWash.Properties -{ - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { - return defaultInstance; - } - } - } -} diff --git a/SuperWash/Properties/Settings.settings b/SuperWash/Properties/Settings.settings deleted file mode 100644 index 3964565..0000000 --- a/SuperWash/Properties/Settings.settings +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - -