Sheas-Cealer/Utils/MihomoProc.cs
2024-10-04 21:12:20 +08:00

12 lines
387 B
C#

using System;
using Microsoft.Win32;
using SheasCore;
namespace Sheas_Cealer.Utils;
internal class MihomoProc : Proc
{
internal MihomoProc() : base("Cealing-Mihomo.exe") { }
public override void Process_Exited(object sender, EventArgs e) => Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings", true)!.SetValue("ProxyEnable", 0);
}