forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMshCoreMshSnapin.cs
More file actions
113 lines (104 loc) · 3.2 KB
/
Copy pathMshCoreMshSnapin.cs
File metadata and controls
113 lines (104 loc) · 3.2 KB
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
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Configuration.Install;
using System.Reflection;
using Microsoft.Win32;
using System.IO;
using System.Management.Automation;
namespace Microsoft.PowerShell
{
/// <summary>
///
/// MshCoreMshSnapin (or MshCoreMshSnapinInstaller) is a class for facilitating registry
/// of necessary information for monad core mshsnapin.
///
/// This class will be built with monad core engine dll
/// (System.Management.Automation.dll).
///
/// </summary>
///
[RunInstaller(true)]
public sealed class PSCorePSSnapIn : PSSnapIn
{
/// <summary>
/// Create an instance of this class.
/// </summary>
public PSCorePSSnapIn()
: base()
{
}
/// <summary>
/// Get name of this mshsnapin.
/// </summary>
public override string Name
{
get
{
return RegistryStrings.CoreMshSnapinName;
}
}
/// <summary>
/// Get the default vendor string for this mshsnapin.
/// </summary>
public override string Vendor
{
get
{
return "Microsoft";
}
}
/// <summary>
/// Get resource information for vendor. This is a string of format: resourceBaseName,resourceName.
/// </summary>
public override string VendorResource
{
get
{
return "CoreMshSnapInResources,Vendor";
}
}
/// <summary>
/// Get the default description string for this mshsnapin.
/// </summary>
public override string Description
{
get
{
return "This PSSnapIn contains MSH management cmdlets used to manage components affecting the MSH engine.";
}
}
/// <summary>
/// Get resource information for description. This is a string of format: resourceBaseName,resourceName.
/// </summary>
public override string DescriptionResource
{
get
{
return "CoreMshSnapInResources,Description";
}
}
/// <summary>
/// Get type files to be used for this mshsnapin.
/// </summary>
public override string[] Types { get; } = new string[] { "types.ps1xml" };
/// <summary>
/// Get format files to be used for this mshsnapin.
/// </summary>
public override string[] Formats { get; } = new string[] {
"Certificate.format.ps1xml",
"DotNetTypes.format.ps1xml",
"FileSystem.format.ps1xml",
"Help.format.ps1xml",
"HelpV3.format.ps1xml",
"PowerShellCore.format.ps1xml",
"PowerShellTrace.format.ps1xml",
"Registry.format.ps1xml"
};
}
}