-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtil.cs
253 lines (203 loc) · 9.13 KB
/
Util.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
using BSS.Logging;
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Management;
#pragma warning disable IDE0079
#pragma warning disable CS8618
#pragma warning disable CS8625
namespace Stimulator
{
internal static class Util
{
internal static Boolean IsWindows10UI() => (RunContextInfo.Windows.IsServer && RunContextInfo.Windows.MajorVersion< 26100) || RunContextInfo.Windows.MajorVersion< 22000;
internal static Boolean UnlockRegistryKey(String keyPath, String user)
{
if (!Execute.Process(new(RunContextInfo.ExecutablePath + "\\assets\\SetACL.exe", $"-on \"{keyPath}\" -ot reg -actn setowner -ownr \"n:{user}\" -rec Yes", true, true, true)).Success) return false;
if (!Execute.Process(new(RunContextInfo.ExecutablePath + "\\assets\\SetACL.exe", $"-on \"{keyPath}\" -ot reg -actn ace -ace \"n:{user};p:full\" -rec Yes", true, true, true)).Success) return false;
return true;
}
internal static Boolean RestartExplorerForUser()
{
if (!KillExplorer(false)) return false;
Execute.StartInfo startInfo = new("c:\\windows\\explorer.exe");
return Execute.Process(startInfo).Success;
}
internal static Boolean KillExplorer(Boolean wholeMachine = false)
{
Execute.StartInfo startInfo;
if (wholeMachine) startInfo = new("c:\\windows\\system32\\taskkill.exe", $"/f /fi \"USERNAME eq {RunContextInfo.Windows.Username}\" /im explorer.exe", true, true, true);
else startInfo = new("c:\\windows\\system32\\taskkill.exe", $"/f /im explorer.exe", true, true, true);
return Execute.Process(startInfo).Success;
}
internal static class WindowsLicenseStatus
{
/// <summary>Retrieves the Windows activation status using the WMI</summary>
public static Boolean GetStatus(out String licenseMessage)
{
Byte status = QueryStatus();
licenseMessage = LicenseStatusToString(status);
return status == 1;
}
/// <summary>Maps the WMI license status to its representative string</summary>
public static String LicenseStatusToString(Byte status) => (status) switch
{
0 => "Unlicensed: 0",
1 => "Licensed: 1",
2 => "OOBGrace: 2",
3 => "OOTGrace: 3",
4 => "NonGenuineGrace: 4",
5 => "Notification: 5",
6 => "ExtendedGrace: 6",
_ => "unknown_status: error",
};
/// <summary>Retrieves the Windows activation status as byte using WMI</summary>
public static Byte QueryStatus()
{
SelectQuery licenseQuery = new(@"SELECT LicenseStatus
FROM SoftwareLicensingProduct
WHERE PartialProductKey is not null AND Name LIKE 'Windows%'");
ManagementObjectSearcher searcher = new(licenseQuery);
ManagementBaseObject wmiObject = searcher.Get().OfType<ManagementBaseObject>().FirstOrDefault();
return Byte.Parse($"{wmiObject["LicenseStatus"]}");
}
}
internal static class Execute
{
internal readonly ref struct StartInfo
{
internal StartInfo(String path) => Path = path;
internal StartInfo(String path, String args)
{
Path = path;
Args = args;
}
internal StartInfo(String path, String args, Boolean runAs)
{
Path = path;
Args = args;
RunAs = runAs;
}
internal StartInfo(String path, String args, Boolean runAs, Boolean waitForExit)
{
Path = path;
Args = args;
RunAs = runAs;
WaitForExit = waitForExit;
}
internal StartInfo(String path, String args, Boolean runAs, Boolean waitForExit, Boolean hiddenExecute)
{
Path = path;
Args = args;
RunAs = runAs;
WaitForExit = waitForExit;
HiddenExecute = hiddenExecute;
}
internal StartInfo(String path, String args, Boolean runAs, Boolean waitForExit, Boolean hiddenExecute, Boolean redirectOutput)
{
Path = path;
Args = args;
RunAs = runAs;
WaitForExit = waitForExit;
HiddenExecute = hiddenExecute;
RedirectOutput = redirectOutput;
}
internal StartInfo(String path, String args, Boolean runAs, Boolean waitForExit, Boolean hiddenExecute, Boolean redirectOutput, String workingDirectory)
{
Path = path;
Args = args;
RunAs = runAs;
WaitForExit = waitForExit;
HiddenExecute = hiddenExecute;
RedirectOutput = redirectOutput;
WorkingDirectory = workingDirectory;
}
internal readonly String Path;
internal readonly String Args;
internal readonly String WorkingDirectory;
internal readonly Boolean RunAs;
internal readonly Boolean RedirectOutput;
internal readonly Boolean HiddenExecute;
internal readonly Boolean WaitForExit;
}
internal ref struct Result
{
public Result() => Success = false;
internal Result(Boolean success) => Success = success;
internal Result(Int32 exitCode, String stdOut, String stdErr)
{
ExitCode = exitCode;
StdOut = stdOut;
StdErr = stdErr;
Success = true;
}
internal Boolean Success = false;
internal Int32 ExitCode;
internal String StdOut;
internal String StdErr;
}
internal static Result Process(StartInfo startInfo)
{
if (!File.Exists(startInfo.Path))
{
Log.FastLog($"'{startInfo.Path}' not found", LogSeverity.Error, "Util.Execute.Process()");
return new(false);
}
using Process process = new();
process.StartInfo.FileName = startInfo.Path;
if (startInfo.RunAs)
{
process.StartInfo.Verb = "runas";
}
if (startInfo.HiddenExecute)
{
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
process.StartInfo.CreateNoWindow = true;
}
if (startInfo.RedirectOutput)
{
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
}
else
{
process.StartInfo.UseShellExecute = true;
process.StartInfo.RedirectStandardOutput = false;
process.StartInfo.RedirectStandardError = false;
}
if (startInfo.WorkingDirectory != null)
{
process.StartInfo.WorkingDirectory = startInfo.WorkingDirectory;
}
if (startInfo.Args != null)
{
process.StartInfo.Arguments = startInfo.Args;
}
try
{
process.Start();
}
catch
{
Log.FastLog($"Failed to start '{startInfo.Path}' no access or not an executable?", LogSeverity.Error, "Util.Execute.Process()");
return new();
}
if (startInfo.RedirectOutput)
{
String stdOUT = process.StandardOutput.ReadToEnd();
String errOUT = process.StandardError.ReadToEnd();
process.WaitForExit();
return new(process.ExitCode, stdOUT, errOUT);
}
else if (startInfo.WaitForExit)
{
process.WaitForExit();
return new(process.ExitCode, null, null);
}
return new(true);
}
}
}
}