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
|
using System;
using System.Management;
using System.Collections.Generic;
using System.Text;
//Tango.SystemInfo
namespace Tango.SystemInfo
{
class Connection
{
ManagementScope connectionScope;
ConnectionOptions options;
#region "properties"
public ManagementScope GetConnectionScope
{
get { return connectionScope; }
}
public ConnectionOptions GetOptions
{
get { return options; }
}
#endregion
#region "static helpers"
public static ConnectionOptions SetConnectionOptions()
{
ConnectionOptions options = new ConnectionOptions();
options.Impersonation = ImpersonationLevel.Impersonate;
options.Authentication = AuthenticationLevel.Default;
options.EnablePrivileges = true;
return options;
}
public static ManagementScope SetConnectionScope(string machineName,
ConnectionOptions options)
{
ManagementScope connectScope = new ManagementScope();
connectScope.Path = new ManagementPath(@"\\" + machineName + @"\root\CIMV2");
connectScope.Options = options;
try
{
connectScope.Connect();
}
catch (ManagementException e)
{
Console.WriteLine("An Error Occurred: " + e.Message.ToString());
}
return connectScope;
}
#endregion
#region "constructors"
public Connection()
{
EstablishConnection(null, null, null, Environment.MachineName);
}
public Connection(string userName,
string password,
string domain,
string machineName)
{
EstablishConnection(userName, password, domain, machineName);
}
#endregion
#region "private helpers"
private void EstablishConnection(string userName, string password, string domain, string machineName)
{
options = Connection.SetConnectionOptions();
if (domain != null || userName != null)
{
options.Username = domain + "\\" + userName;
options.Password = password;
}
connectionScope = Connection.SetConnectionScope(machineName, options);
}
#endregion
}
}
|