-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_global.cs
46 lines (32 loc) · 1.31 KB
/
state_global.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
using System;
using System.Windows.Threading;
#pragma warning disable IDE0079
#pragma warning disable CS8625
namespace Stimulator
{
internal static class UI
{
internal static Dispatcher Dispatcher = null;
}
internal static class RunContextInfo
{
internal static String ExecutablePath = null;
internal struct Windows
{
internal static UInt32 MajorVersion = 0;
internal static UInt32 MinorVersion = 0;
internal static Boolean IsServer = false;
internal static Boolean IsHomeEdition = false;
internal static String HostName = Environment.GetEnvironmentVariable("COMPUTERNAME");
internal static String NetBiosHostname = Environment.MachineName;
internal static Boolean IsDomainJoined = false;
internal static String Domain = null;
internal static String Username = null;
internal static String UserHomePath = null;
internal static String AdministratorGroupName = null;
internal static Boolean IsUEFI = false;
internal static Boolean SecureBootEnabled = false;
}
}
// #####################################################################################
}