├── App.config
├── Form1.Designer.cs
├── Form1.cs
├── Form1.resx
├── Program.cs
├── Properties
├── AssemblyInfo.cs
├── Resources.Designer.cs
├── Resources.resx
├── Settings.Designer.cs
├── Settings.settings
└── app.manifest
├── README.md
├── WindowsDefenderManager.csproj
├── WindowsDefenderManager.sln
├── aoo7n-6jb18-001.ico
├── bin
└── Debug
│ ├── WindowsDefenderManager.exe
│ ├── WindowsDefenderManager.exe.config
│ ├── WindowsDefenderManager.pdb
│ └── app.publish
│ └── WindowsDefenderManager.exe
├── logo.ico
└── pic
├── banner.png
├── logo.ico
└── main.PNG
/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Form1.Designer.cs:
--------------------------------------------------------------------------------
1 | namespace WindowsDefenderManager
2 | {
3 | partial class WD
4 | {
5 | ///
6 | /// 必需的设计器变量。
7 | ///
8 | private System.ComponentModel.IContainer components = null;
9 |
10 | ///
11 | /// 清理所有正在使用的资源。
12 | ///
13 | /// 如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
24 |
25 | ///
26 | /// 设计器支持所需的方法 - 不要修改
27 | /// 使用代码编辑器修改此方法的内容。
28 | ///
29 | private void InitializeComponent()
30 | {
31 | System.Windows.Forms.Button btnServiceOpen;
32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WD));
33 | this.label1 = new System.Windows.Forms.Label();
34 | this.btnHealthOpen = new System.Windows.Forms.Button();
35 | this.btnHealthClose = new System.Windows.Forms.Button();
36 | this.btnServiceClose = new System.Windows.Forms.Button();
37 | this.label2 = new System.Windows.Forms.Label();
38 | this.pictureBox1 = new System.Windows.Forms.PictureBox();
39 | this.label3 = new System.Windows.Forms.Label();
40 | this.openSourceLink = new System.Windows.Forms.LinkLabel();
41 | this.label4 = new System.Windows.Forms.Label();
42 | this.label5 = new System.Windows.Forms.Label();
43 | btnServiceOpen = new System.Windows.Forms.Button();
44 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
45 | this.SuspendLayout();
46 | //
47 | // btnServiceOpen
48 | //
49 | btnServiceOpen.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
50 | btnServiceOpen.Location = new System.Drawing.Point(58, 191);
51 | btnServiceOpen.Name = "btnServiceOpen";
52 | btnServiceOpen.Size = new System.Drawing.Size(75, 38);
53 | btnServiceOpen.TabIndex = 4;
54 | btnServiceOpen.Text = "开启";
55 | btnServiceOpen.UseVisualStyleBackColor = true;
56 | btnServiceOpen.Click += new System.EventHandler(this.btnServiceOpen_Click);
57 | //
58 | // label1
59 | //
60 | this.label1.AutoSize = true;
61 | this.label1.Location = new System.Drawing.Point(43, 47);
62 | this.label1.Name = "label1";
63 | this.label1.Size = new System.Drawing.Size(230, 13);
64 | this.label1.TabIndex = 0;
65 | this.label1.Text = "Windows Defender 安全健康服务管理";
66 | //
67 | // btnHealthOpen
68 | //
69 | this.btnHealthOpen.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
70 | this.btnHealthOpen.Location = new System.Drawing.Point(58, 82);
71 | this.btnHealthOpen.Name = "btnHealthOpen";
72 | this.btnHealthOpen.Size = new System.Drawing.Size(75, 38);
73 | this.btnHealthOpen.TabIndex = 1;
74 | this.btnHealthOpen.Text = "开启";
75 | this.btnHealthOpen.UseVisualStyleBackColor = true;
76 | this.btnHealthOpen.Click += new System.EventHandler(this.btnHealthOpen_Click);
77 | //
78 | // btnHealthClose
79 | //
80 | this.btnHealthClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
81 | this.btnHealthClose.Location = new System.Drawing.Point(173, 82);
82 | this.btnHealthClose.Name = "btnHealthClose";
83 | this.btnHealthClose.Size = new System.Drawing.Size(75, 38);
84 | this.btnHealthClose.TabIndex = 2;
85 | this.btnHealthClose.Text = "关闭";
86 | this.btnHealthClose.UseVisualStyleBackColor = true;
87 | this.btnHealthClose.Click += new System.EventHandler(this.btnHealthClose_Click);
88 | //
89 | // btnServiceClose
90 | //
91 | this.btnServiceClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
92 | this.btnServiceClose.Location = new System.Drawing.Point(173, 191);
93 | this.btnServiceClose.Name = "btnServiceClose";
94 | this.btnServiceClose.Size = new System.Drawing.Size(75, 38);
95 | this.btnServiceClose.TabIndex = 5;
96 | this.btnServiceClose.Text = "关闭";
97 | this.btnServiceClose.UseVisualStyleBackColor = true;
98 | this.btnServiceClose.Click += new System.EventHandler(this.btnServiceClose_Click);
99 | //
100 | // label2
101 | //
102 | this.label2.AutoSize = true;
103 | this.label2.Location = new System.Drawing.Point(43, 156);
104 | this.label2.Name = "label2";
105 | this.label2.Size = new System.Drawing.Size(230, 13);
106 | this.label2.TabIndex = 3;
107 | this.label2.Text = "Windows Defender 安全服务中心管理";
108 | //
109 | // pictureBox1
110 | //
111 | this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
112 | this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
113 | this.pictureBox1.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.InitialImage")));
114 | this.pictureBox1.Location = new System.Drawing.Point(334, 34);
115 | this.pictureBox1.Name = "pictureBox1";
116 | this.pictureBox1.Size = new System.Drawing.Size(417, 224);
117 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
118 | this.pictureBox1.TabIndex = 6;
119 | this.pictureBox1.TabStop = false;
120 | //
121 | // label3
122 | //
123 | this.label3.AutoSize = true;
124 | this.label3.Location = new System.Drawing.Point(43, 289);
125 | this.label3.Name = "label3";
126 | this.label3.Size = new System.Drawing.Size(230, 13);
127 | this.label3.TabIndex = 7;
128 | this.label3.Text = "一键开启/关闭您的Windows Defender";
129 | //
130 | // openSourceLink
131 | //
132 | this.openSourceLink.AutoSize = true;
133 | this.openSourceLink.Location = new System.Drawing.Point(528, 289);
134 | this.openSourceLink.Name = "openSourceLink";
135 | this.openSourceLink.Size = new System.Drawing.Size(108, 13);
136 | this.openSourceLink.TabIndex = 8;
137 | this.openSourceLink.TabStop = true;
138 | this.openSourceLink.Text = "Github 开源地址";
139 | this.openSourceLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.openSourceLink_LinkClicked);
140 | //
141 | // label4
142 | //
143 | this.label4.AutoSize = true;
144 | this.label4.Location = new System.Drawing.Point(697, 289);
145 | this.label4.Name = "label4";
146 | this.label4.Size = new System.Drawing.Size(54, 13);
147 | this.label4.TabIndex = 9;
148 | this.label4.Text = "By 亦泽";
149 | //
150 | // label5
151 | //
152 | this.label5.AutoSize = true;
153 | this.label5.ForeColor = System.Drawing.Color.Salmon;
154 | this.label5.Location = new System.Drawing.Point(90, 18);
155 | this.label5.Name = "label5";
156 | this.label5.Size = new System.Drawing.Size(124, 13);
157 | this.label5.TabIndex = 10;
158 | this.label5.Text = "请以管理员权限运行";
159 | //
160 | // WD
161 | //
162 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
163 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
164 | this.BackColor = System.Drawing.SystemColors.Control;
165 | this.ClientSize = new System.Drawing.Size(794, 324);
166 | this.Controls.Add(this.label5);
167 | this.Controls.Add(this.label4);
168 | this.Controls.Add(this.openSourceLink);
169 | this.Controls.Add(this.label3);
170 | this.Controls.Add(this.pictureBox1);
171 | this.Controls.Add(this.btnServiceClose);
172 | this.Controls.Add(btnServiceOpen);
173 | this.Controls.Add(this.label2);
174 | this.Controls.Add(this.btnHealthClose);
175 | this.Controls.Add(this.btnHealthOpen);
176 | this.Controls.Add(this.label1);
177 | this.ForeColor = System.Drawing.Color.Black;
178 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
179 | this.Name = "WD";
180 | this.Text = "Windows Defender Manager";
181 | this.Load += new System.EventHandler(this.Form1_Load);
182 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
183 | this.ResumeLayout(false);
184 | this.PerformLayout();
185 |
186 | }
187 |
188 | #endregion
189 |
190 | private System.Windows.Forms.Label label1;
191 | private System.Windows.Forms.Button btnHealthOpen;
192 | private System.Windows.Forms.Button btnHealthClose;
193 | private System.Windows.Forms.Button btnServiceClose;
194 | private System.Windows.Forms.Label label2;
195 | private System.Windows.Forms.PictureBox pictureBox1;
196 | private System.Windows.Forms.Label label3;
197 | private System.Windows.Forms.LinkLabel openSourceLink;
198 | private System.Windows.Forms.Label label4;
199 | private System.Windows.Forms.Label label5;
200 | }
201 | }
202 |
203 |
--------------------------------------------------------------------------------
/Form1.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.Win32;
2 | using System;
3 | using System.Windows.Forms;
4 |
5 | namespace WindowsDefenderManager
6 | {
7 | public partial class WD : Form
8 | {
9 | public WD()
10 | {
11 | InitializeComponent();
12 | }
13 |
14 | private void Form1_Load(object sender, EventArgs e)
15 | {
16 |
17 | }
18 |
19 | private void btnHealthOpen_Click(object sender, EventArgs e)
20 | {
21 | //开启安全健康服务
22 | RegistryKey key1 = Registry.LocalMachine;
23 | RegistryKey software1 = key1.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\SecurityHealthService", true);
24 | software1.SetValue("Start", 2);
25 | string GetValue1 = software1.GetValue("Start").ToString();
26 | if (GetValue1 == "2"){
27 | MessageBox.Show("开启安全健康服务成功,重启后生效");
28 |
29 | }
30 | else
31 | {
32 | MessageBox.Show("失败,请以管理员权限运行");
33 | }
34 | }
35 |
36 | private void btnHealthClose_Click(object sender, EventArgs e)
37 | {
38 | //关闭安全健康服务
39 | RegistryKey key1 = Registry.LocalMachine;
40 | RegistryKey software1 = key1.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\SecurityHealthService", true);
41 | software1.SetValue("Start", 4);
42 | string GetValue1 = software1.GetValue("Start").ToString();
43 | if (GetValue1 == "4"){
44 | MessageBox.Show("关闭安全健康服务成功!重启生效");
45 | }
46 | else {
47 | MessageBox.Show("失败,请以管理员权限运行");
48 | }
49 | }
50 |
51 | private void btnServiceOpen_Click(object sender, EventArgs e)
52 | {
53 | //开启window Defender安全中心服务
54 | RegistryKey key2 = Registry.LocalMachine;
55 | RegistryKey software2 = key2.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\wscsvc", true);
56 | software2.SetValue("Start", 2);
57 | string GetValue2 = software2.GetValue("Start").ToString();
58 | if (GetValue2 == "2")
59 | {
60 | MessageBox.Show("开启成功!重启生效");
61 | }
62 | else
63 | {
64 | MessageBox.Show("失败,请以管理员权限运行");
65 | }
66 | }
67 |
68 | private void btnServiceClose_Click(object sender, EventArgs e)
69 | {
70 | //关闭window Defender安全中心服务
71 | RegistryKey key2 = Registry.LocalMachine;
72 | RegistryKey software2 = key2.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\wscsvc", true);
73 | software2.SetValue("Start", 4);
74 | string GetValue2 = software2.GetValue("Start").ToString();
75 | if (GetValue2 == "4")
76 | {
77 | MessageBox.Show("关闭成功!重启生效");
78 | }
79 | else
80 | {
81 | MessageBox.Show("失败,请以管理员权限运行");
82 | }
83 | }
84 |
85 | private void openSourceLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
86 | {
87 | System.Diagnostics.Process.Start("https://github.com/bestyize/WindowsDefenderManager");
88 | }
89 | }
90 | }
91 |
--------------------------------------------------------------------------------
/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Threading.Tasks;
5 | using System.Windows.Forms;
6 |
7 | namespace WindowsDefenderManager
8 | {
9 | static class Program
10 | {
11 | ///
12 | /// 应用程序的主入口点。
13 | ///
14 | [STAThread]
15 | static void Main()
16 | {
17 | Application.EnableVisualStyles();
18 | Application.SetCompatibleTextRenderingDefault(false);
19 | Application.Run(new WD());
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // 有关程序集的一般信息由以下
6 | // 控制。更改这些特性值可修改
7 | // 与程序集关联的信息。
8 | [assembly: AssemblyTitle("WindowsDefenderManager")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("WindowsDefenderManager")]
13 | [assembly: AssemblyCopyright("Copyright © 2020")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // 将 ComVisible 设置为 false 会使此程序集中的类型
18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
19 | //请将此类型的 ComVisible 特性设置为 true。
20 | [assembly: ComVisible(false)]
21 |
22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
23 | [assembly: Guid("2b681aa9-2ade-4e93-a081-b4bc62a2fde6")]
24 |
25 | // 程序集的版本信息由下列四个值组成:
26 | //
27 | // 主版本
28 | // 次版本
29 | // 生成号
30 | // 修订号
31 | //
32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
33 | //通过使用 "*",如下所示:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // 此代码由工具生成。
4 | // 运行时版本: 4.0.30319.42000
5 | //
6 | // 对此文件的更改可能导致不正确的行为,如果
7 | // 重新生成代码,则所做更改将丢失。
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace WindowsDefenderManager.Properties
12 | {
13 |
14 |
15 | ///
16 | /// 强类型资源类,用于查找本地化字符串等。
17 | ///
18 | // 此类是由 StronglyTypedResourceBuilder
19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
20 | // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen
21 | // (以 /str 作为命令选项),或重新生成 VS 项目。
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 | internal class Resources
26 | {
27 |
28 | private static global::System.Resources.ResourceManager resourceMan;
29 |
30 | private static global::System.Globalization.CultureInfo resourceCulture;
31 |
32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
33 | internal Resources()
34 | {
35 | }
36 |
37 | ///
38 | /// 返回此类使用的缓存 ResourceManager 实例。
39 | ///
40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
41 | internal static global::System.Resources.ResourceManager ResourceManager
42 | {
43 | get
44 | {
45 | if ((resourceMan == null))
46 | {
47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsDefenderManager.Properties.Resources", typeof(Resources).Assembly);
48 | resourceMan = temp;
49 | }
50 | return resourceMan;
51 | }
52 | }
53 |
54 | ///
55 | /// 覆盖当前线程的 CurrentUICulture 属性
56 | /// 使用此强类型的资源类的资源查找。
57 | ///
58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
59 | internal static global::System.Globalization.CultureInfo Culture
60 | {
61 | get
62 | {
63 | return resourceCulture;
64 | }
65 | set
66 | {
67 | resourceCulture = value;
68 | }
69 | }
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/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 | text/microsoft-resx
107 |
108 |
109 | 2.0
110 |
111 |
112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
113 |
114 |
115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
--------------------------------------------------------------------------------
/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 WindowsDefenderManager.Properties
12 | {
13 |
14 |
15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
18 | {
19 |
20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
21 |
22 | public static Settings Default
23 | {
24 | get
25 | {
26 | return defaultInstance;
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Properties/app.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
47 |
54 |
55 |
69 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # WindowsDefenderManager
2 |
3 | 一键关闭/开启Windows Defender
4 |
5 | 相信大家在使用电脑软件的时候,有时会遇到Windows Defender悄无声息的删掉电脑中软件的情况,而且Windows Defender没法手动关闭,本工具的作用就是管理Windows Defender的开启和关闭
6 |
7 | 软件截图
8 |
9 | 
10 |
11 | 成品软件下载地址
12 |
13 | [https://www.lanzoui.com/b05mjkqgj](https://www.lanzoui.com/b05mjkqgj)
14 |
--------------------------------------------------------------------------------
/WindowsDefenderManager.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {2B681AA9-2ADE-4E93-A081-B4BC62A2FDE6}
8 | WinExe
9 | WindowsDefenderManager
10 | WindowsDefenderManager
11 | v4.7.2
12 | 512
13 | true
14 | true
15 |
16 |
17 | AnyCPU
18 | true
19 | full
20 | false
21 | bin\Debug\
22 | DEBUG;TRACE
23 | prompt
24 | 4
25 |
26 |
27 | AnyCPU
28 | pdbonly
29 | true
30 | bin\Release\
31 | TRACE
32 | prompt
33 | 4
34 |
35 |
36 | LocalIntranet
37 |
38 |
39 | false
40 |
41 |
42 | Properties\app.manifest
43 |
44 |
45 | logo.ico
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 | Form
63 |
64 |
65 | Form1.cs
66 |
67 |
68 |
69 |
70 | Form1.cs
71 |
72 |
73 | ResXFileCodeGenerator
74 | Resources.Designer.cs
75 | Designer
76 |
77 |
78 | True
79 | Resources.resx
80 |
81 |
82 |
83 | SettingsSingleFileGenerator
84 | Settings.Designer.cs
85 |
86 |
87 | True
88 | Settings.settings
89 | True
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
--------------------------------------------------------------------------------
/WindowsDefenderManager.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 16
4 | VisualStudioVersion = 16.0.30413.136
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsDefenderManager", "WindowsDefenderManager.csproj", "{2B681AA9-2ADE-4E93-A081-B4BC62A2FDE6}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {2B681AA9-2ADE-4E93-A081-B4BC62A2FDE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {2B681AA9-2ADE-4E93-A081-B4BC62A2FDE6}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {2B681AA9-2ADE-4E93-A081-B4BC62A2FDE6}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {2B681AA9-2ADE-4E93-A081-B4BC62A2FDE6}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | GlobalSection(ExtensibilityGlobals) = postSolution
23 | SolutionGuid = {63AAE55C-FA08-4E63-98FB-F9FBC40DAD27}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/aoo7n-6jb18-001.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/aoo7n-6jb18-001.ico
--------------------------------------------------------------------------------
/bin/Debug/WindowsDefenderManager.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/bin/Debug/WindowsDefenderManager.exe
--------------------------------------------------------------------------------
/bin/Debug/WindowsDefenderManager.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bin/Debug/WindowsDefenderManager.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/bin/Debug/WindowsDefenderManager.pdb
--------------------------------------------------------------------------------
/bin/Debug/app.publish/WindowsDefenderManager.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/bin/Debug/app.publish/WindowsDefenderManager.exe
--------------------------------------------------------------------------------
/logo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/logo.ico
--------------------------------------------------------------------------------
/pic/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/pic/banner.png
--------------------------------------------------------------------------------
/pic/logo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/pic/logo.ico
--------------------------------------------------------------------------------
/pic/main.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bestyize/WindowsDefenderManager/6512f1264edd6bb44fe627d865a11a2834e2e247/pic/main.PNG
--------------------------------------------------------------------------------