Compare commits
3 Commits
4be5de8177
...
121dfa381d
Author | SHA1 | Date | |
---|---|---|---|
121dfa381d | |||
80b2df1121 | |||
1137495368 |
@@ -7,7 +7,7 @@
|
||||
<StartupObject>NetWork.Program</StartupObject>
|
||||
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
||||
<StartWorkingDirectory>.</StartWorkingDirectory>
|
||||
|
||||
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
|
||||
@@ -43,6 +43,8 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AudioControl.x64" Version="1.0.1" />
|
||||
<PackageReference Include="AutoHotkey.Interop" Version="1.0.0.1" />
|
||||
<PackageReference Include="LiteDB" Version="5.0.16" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="7.0.5" />
|
||||
<PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.0" />
|
||||
<PackageReference Include="Microsoft.NETCore.Windows.ApiSets-x64" Version="1.0.0" />
|
||||
<PackageReference Include="NAudio" Version="2.0.1" />
|
||||
@@ -58,6 +60,7 @@
|
||||
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
|
||||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||||
<PackageReference Include="SimpleWifi.netstandard" Version="2.0.0" />
|
||||
<PackageReference Include="SQLite" Version="3.13.0" />
|
||||
<PackageReference Include="System.Management" Version="6.0.0" />
|
||||
<PackageReference Include="System.ServiceProcess.ServiceController" Version="6.0.0" />
|
||||
<PackageReference Include="TaskScheduler" Version="2.10.1" />
|
||||
|
@@ -8,6 +8,8 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using SQLitePCL;
|
||||
using LiteDB;
|
||||
using System.Net.NetworkInformation;
|
||||
using System.ServiceProcess;
|
||||
using System.Text.RegularExpressions;
|
||||
@@ -15,6 +17,7 @@ using System.Threading;
|
||||
using Serilog.Core;
|
||||
using Serilog.Sinks.File;
|
||||
using Serilog.Events;
|
||||
using Microsoft.Win32;
|
||||
|
||||
namespace NetWork
|
||||
{
|
||||
@@ -442,7 +445,8 @@ namespace NetWork
|
||||
task.FindTask("StartUp and Run").Run();
|
||||
}
|
||||
public static bool IniData() {
|
||||
return System.IO.File.ReadAllText("Other\\Data.ini").Equals("RunNetwork");
|
||||
var toRunOrNotToRun = Registry.GetValue(@"HKEY_CURRENT_USER\Software\SaretNetwork", "Run", 1);
|
||||
return toRunOrNotToRun is null? true: toRunOrNotToRun.Equals(1)?true:false;
|
||||
}
|
||||
static void Main(string[] args) {
|
||||
Log.Logger = new LoggerConfiguration().WriteTo.File("Logs/NetworkLog.log", LogEventLevel.Debug,
|
||||
|
64
NetWork/RegistarRegistry.cs
Normal file
64
NetWork/RegistarRegistry.cs
Normal file
@@ -0,0 +1,64 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using Microsoft.Win32;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NetWork
|
||||
{
|
||||
internal class RegistarRegistry
|
||||
{
|
||||
|
||||
public static bool IniData()
|
||||
{
|
||||
var toRunOrNotToRun = Registry.GetValue(@"HKEY_CURRENT_USER\Software\SaretNetwork", "Run", 1);
|
||||
return toRunOrNotToRun is null ? true : toRunOrNotToRun.Equals(1) ? true : false;
|
||||
}
|
||||
}
|
||||
internal class NetworkInterface
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public ListOfPrograms ListOfProgramsToStart { get; set; }
|
||||
public ListOfPrograms ListOfProgramsToStop { get; set; }
|
||||
public string[] ServicesToStart { get; set; }
|
||||
public string[] ServicesToStop { get;set; }
|
||||
public bool Mute { get; set; }=true;
|
||||
public NetworkInterface(string name, string url)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
internal class ListOfPrograms
|
||||
{
|
||||
public string[] ProgramName { get; private set; }
|
||||
public string[] ProgramPath { get; private set; }
|
||||
public ListOfPrograms(string url) {
|
||||
WebClient webClient = new();
|
||||
string[] data = Regex.Split(Regex.Replace(webClient.DownloadString(url),@"[\{\}]",""),",");
|
||||
ProgramName = new string[data.Length];
|
||||
ProgramPath = new string[data.Length];
|
||||
for(int i = 0; i < data.Length; i++)
|
||||
{
|
||||
ProgramName[i] = Regex.Match(data[i], @"(?<="").+(?="":)").Value;
|
||||
ProgramPath[i] = Regex.Match(data[i], @"(?<=:\s?"")[^""]+").Value;
|
||||
}
|
||||
//string d = Regex.Replace(webClient.DownloadString(url), @"[\{\}]", "");
|
||||
//ProgramName = Regex.Matches(d,@"(?<=\"")\w+(?=\"":)").Select(x => x.Value).ToArray();
|
||||
}
|
||||
public ListOfPrograms(string registryHive, string registryName)
|
||||
{
|
||||
string location = Regex.IsMatch(registryHive, @"HKEY_") ? Regex.Replace(registryHive, @"^[^\\]+", "")[1..] : registryHive;
|
||||
RegistryKey key = Registry.CurrentUser.OpenSubKey($"{location}\\{registryName}") ;
|
||||
ProgramName = key.GetValueNames();
|
||||
ProgramPath = new string[ProgramName.Length];
|
||||
for (int i = 0; i < ProgramName.Length; i++)
|
||||
{
|
||||
ProgramPath[i] = Registry.GetValue($"HKEY_CURRENT_USER\\{location}\\{registryName}", ProgramName[i], "").ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user