forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewLocalGroupCommand.cs
More file actions
121 lines (104 loc) · 3.38 KB
/
Copy pathNewLocalGroupCommand.cs
File metadata and controls
121 lines (104 loc) · 3.38 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
114
115
116
117
118
119
120
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#region Using directives
using System;
using System.Management.Automation;
using System.Management.Automation.SecurityAccountsManager;
using System.Management.Automation.SecurityAccountsManager.Extensions;
using Microsoft.PowerShell.LocalAccounts;
#endregion
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// The New-LocalGroup Cmdlet can be used to create a new local security group
/// in the Windows Security Accounts Manager.
/// </summary>
[Cmdlet(VerbsCommon.New, "LocalGroup",
SupportsShouldProcess = true,
HelpUri ="https://go.microsoft.com/fwlink/?LinkId=717990")]
[Alias("nlg")]
public class NewLocalGroupCommand : Cmdlet
{
#region Instance Data
private Sam sam = null;
#endregion Instance Data
#region Parameter Properties
/// <summary>
/// The following is the definition of the input parameter "Description".
/// A descriptive comment.
/// </summary>
[Parameter(ValueFromPipelineByPropertyName = true)]
[ValidateNotNull]
public string Description
{
get { return this.description;}
set { this.description = value; }
}
private string description;
/// <summary>
/// The following is the definition of the input parameter "Name".
/// The group name for the local security group.
/// </summary>
[Parameter(Mandatory = true,
Position = 0,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
[ValidateLength(1, 256)]
public string Name
{
get { return this.name;}
set { this.name = value; }
}
private string name;
#endregion Parameter Properties
#region Cmdlet Overrides
/// <summary>
/// BeginProcessing method.
/// </summary>
protected override void BeginProcessing()
{
sam = new Sam();
}
/// <summary>
/// ProcessRecord method.
/// </summary>
protected override void ProcessRecord()
{
try
{
if (CheckShouldProcess(Name))
{
var group = sam.CreateLocalGroup(new LocalGroup
{
Description = Description,
Name = Name
});
WriteObject(group);
}
}
catch (Exception ex)
{
WriteError(ex.MakeErrorRecord());
}
}
/// <summary>
/// EndProcessing method.
/// </summary>
protected override void EndProcessing()
{
if (sam != null)
{
sam.Dispose();
sam = null;
}
}
#endregion Cmdlet Overrides
#region Private Methods
private bool CheckShouldProcess(string target)
{
return ShouldProcess(target, Strings.ActionNewGroup);
}
#endregion Private Methods
}
}