mirror of
https://github.com/mastercodeon314/KsDumper-11.git
synced 2025-02-20 04:21:14 +01:00
29 lines
732 B
C#
29 lines
732 B
C#
|
using KsDumper11.Driver;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace KsDumper11
|
|||
|
{
|
|||
|
public class StartDriver
|
|||
|
{
|
|||
|
public static void Start()
|
|||
|
{
|
|||
|
bool driverOpen = KsDumperDriverInterface.IsDriverOpen("\\\\.\\KsDumper");
|
|||
|
|
|||
|
if (!driverOpen)
|
|||
|
{
|
|||
|
if (File.Exists(KduSelfExtract.AssemblyDirectory + @"\\Providers.json"))
|
|||
|
{
|
|||
|
KduWrapper wr = new KduWrapper(KduSelfExtract.AssemblyDirectory + @"\Driver\kdu.exe");
|
|||
|
wr.LoadProviders();
|
|||
|
wr.Start();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|