diff --git a/Reseter2.sln b/Reseter2.sln
new file mode 100644
index 0000000..8eb22d5
--- /dev/null
+++ b/Reseter2.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32929.385
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Reseter2", "Reseter2\Reseter2.csproj", "{E13AAA23-6EFA-4BE7-A0C9-11FF22A61667}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {E13AAA23-6EFA-4BE7-A0C9-11FF22A61667}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E13AAA23-6EFA-4BE7-A0C9-11FF22A61667}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E13AAA23-6EFA-4BE7-A0C9-11FF22A61667}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E13AAA23-6EFA-4BE7-A0C9-11FF22A61667}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {3A7E3ECB-47B3-4A89-900C-397F273363FF}
+ EndGlobalSection
+EndGlobal
diff --git a/Reseter2/App.config b/Reseter2/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Reseter2/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Reseter2/CompName.cs b/Reseter2/CompName.cs
new file mode 100644
index 0000000..b173579
--- /dev/null
+++ b/Reseter2/CompName.cs
@@ -0,0 +1,40 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Reseter2
+{
+ internal class CompId : IComp
+ {
+ private string Name { get; set; }
+ private string Description { get; set; }
+ private string Ip { get; set; }
+ public CompId(string name, string description)
+ {
+ this.Name = name;
+ this.Description = description;
+ }
+
+ public CompId(string name, string description, string ip)
+ {
+ this.Name = name;
+ this.Description = description;
+ this.Ip = ip;
+ }
+
+
+ public string GetName()
+ {
+ return Name;
+ }
+
+ public string GetDescription()
+ {
+ return Description;
+ }
+
+
+ }
+}
diff --git a/Reseter2/Form1.Designer.cs b/Reseter2/Form1.Designer.cs
new file mode 100644
index 0000000..d80efbb
--- /dev/null
+++ b/Reseter2/Form1.Designer.cs
@@ -0,0 +1,40 @@
+namespace Reseter2
+{
+ partial class Form1
+ {
+ ///
+ /// Обязательная переменная конструктора.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Освободить все используемые ресурсы.
+ ///
+ /// истинно, если управляемый ресурс должен быть удален; иначе ложно.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Код, автоматически созданный конструктором форм Windows
+
+ ///
+ /// Требуемый метод для поддержки конструктора — не изменяйте
+ /// содержимое этого метода с помощью редактора кода.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "Form1";
+ }
+
+ #endregion
+ }
+}
+
diff --git a/Reseter2/Form1.cs b/Reseter2/Form1.cs
new file mode 100644
index 0000000..f3b65f2
--- /dev/null
+++ b/Reseter2/Form1.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Reseter2
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Reseter2/IComp.cs b/Reseter2/IComp.cs
new file mode 100644
index 0000000..987ed09
--- /dev/null
+++ b/Reseter2/IComp.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Reseter2
+{
+ internal interface IComp
+ {
+ string GetName();
+ string GetDescription();
+
+ }
+}
diff --git a/Reseter2/IStatusTask.cs b/Reseter2/IStatusTask.cs
new file mode 100644
index 0000000..10dafbd
--- /dev/null
+++ b/Reseter2/IStatusTask.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Reseter2
+{
+ abstract class AStatusTask
+ {
+ protected ReseterTask resetertask;
+ public AStatusTask(ReseterTask reseterTask)
+ {
+ resetertask = reseterTask;
+ }
+ public abstract void Stop();
+ public abstract void Next();
+ }
+}
diff --git a/Reseter2/Program.cs b/Reseter2/Program.cs
new file mode 100644
index 0000000..153ebb2
--- /dev/null
+++ b/Reseter2/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Reseter2
+{
+ internal static class Program
+ {
+ ///
+ /// Главная точка входа для приложения.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}
diff --git a/Reseter2/Properties/AssemblyInfo.cs b/Reseter2/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..54c82c5
--- /dev/null
+++ b/Reseter2/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
+// связанных со сборкой.
+[assembly: AssemblyTitle("Reseter2")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Reseter2")]
+[assembly: AssemblyCopyright("Copyright © 2024")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// COM, следует установить атрибут ComVisible в TRUE для этого типа.
+[assembly: ComVisible(false)]
+
+// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
+[assembly: Guid("e13aaa23-6efa-4be7-a0c9-11ff22a61667")]
+
+// Сведения о версии сборки состоят из указанных ниже четырех значений:
+//
+// Основной номер версии
+// Дополнительный номер версии
+// Номер сборки
+// Редакция
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Reseter2/Properties/Resources.Designer.cs b/Reseter2/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..a5eb57c
--- /dev/null
+++ b/Reseter2/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программным средством.
+// Версия среды выполнения: 4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
+// код создан повторно.
+//
+//------------------------------------------------------------------------------
+
+namespace Reseter2.Properties
+{
+
+
+ ///
+ /// Класс ресурсов со строгим типом для поиска локализованных строк и пр.
+ ///
+ // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder
+ // класс с помощью таких средств, как ResGen или Visual Studio.
+ // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen
+ // с параметром /str или заново постройте свой VS-проект.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Reseter2.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Переопределяет свойство CurrentUICulture текущего потока для всех
+ /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Reseter2/Properties/Resources.resx b/Reseter2/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Reseter2/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Reseter2/Properties/Settings.Designer.cs b/Reseter2/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..084e877
--- /dev/null
+++ b/Reseter2/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// 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 Reseter2.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/Reseter2/Properties/Settings.settings b/Reseter2/Properties/Settings.settings
new file mode 100644
index 0000000..3964565
--- /dev/null
+++ b/Reseter2/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Reseter2/ReseteTask.cs b/Reseter2/ReseteTask.cs
new file mode 100644
index 0000000..5ee9541
--- /dev/null
+++ b/Reseter2/ReseteTask.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Reseter2
+{
+ internal class ReseterTask
+ {
+ private IComp Comp;
+ private AStatusTask StatusTask;
+
+
+ public ReseterTask(IComp comp)
+ {
+ Comp = comp;
+ StatusTask = new StatusPreReboot(this);
+ }
+ private void Clear()
+ {
+ Reseter.Clear(this);
+ }
+
+ }
+}
diff --git a/Reseter2/Reseter2.csproj b/Reseter2/Reseter2.csproj
new file mode 100644
index 0000000..5b82c5d
--- /dev/null
+++ b/Reseter2/Reseter2.csproj
@@ -0,0 +1,86 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {E13AAA23-6EFA-4BE7-A0C9-11FF22A61667}
+ WinExe
+ Reseter2
+ Reseter2
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ Form1.cs
+
+
+
+
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Reseter2/StausPreReboot.cs b/Reseter2/StausPreReboot.cs
new file mode 100644
index 0000000..331133e
--- /dev/null
+++ b/Reseter2/StausPreReboot.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Reseter2
+{
+ internal class StatusPreReboot : AStatusTask
+ {
+ public StatusPreReboot(ReseterTask reseterTask) : base(reseterTask)
+ {
+ }
+
+ public override void Next()
+ {
+
+ }
+ public override void Stop()
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/Reseter2/reseter.cs b/Reseter2/reseter.cs
new file mode 100644
index 0000000..cb1ba4e
--- /dev/null
+++ b/Reseter2/reseter.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Reseter2
+{
+ internal static class Reseter
+ {
+ private static List list_task;
+
+
+ public static void AddTask(IComp compName)
+ {
+ list_task.Add(new ReseterTask(compName));
+ }
+
+ public static void Clear(ReseterTask reseterTask)
+ {
+ list_task.Remove(reseterTask);
+ }
+ }
+}