// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #region Using directives using System; using System.Collections.Generic; using System.Management.Automation; using System.Management.Automation.SecurityAccountsManager; using System.Management.Automation.SecurityAccountsManager.Extensions; using Microsoft.PowerShell.LocalAccounts; using System.Diagnostics.CodeAnalysis; #endregion namespace Microsoft.PowerShell.Commands { /// /// The Enable-LocalUser cmdlet enables local user accounts. When a user account /// is disabled, the user is not permitted to log on. When a user account is /// enabled, the user is permitted to log on normally. /// [Cmdlet(VerbsLifecycle.Enable, "LocalUser", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=717985")] [Alias("elu")] public class EnableLocalUserCommand : Cmdlet { #region Constants private const Enabling enabling = Enabling.Enable; #endregion Constants #region Instance Data private Sam sam = null; #endregion Instance Data #region Parameter Properties /// /// The following is the definition of the input parameter "InputObject". /// Specifies the of the local user accounts to enable in the local Security /// Accounts Manager. /// [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, ParameterSetName = "InputObject")] [ValidateNotNullOrEmpty] [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public Microsoft.PowerShell.Commands.LocalUser[] InputObject { get { return this.inputobject; } set { this.inputobject = value; } } private Microsoft.PowerShell.Commands.LocalUser[] inputobject; /// /// The following is the definition of the input parameter "Name". /// Specifies the local user accounts to enable in the local Security Accounts /// Manager. /// [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, ParameterSetName = "Default")] [ValidateNotNullOrEmpty] [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public string[] Name { get { return this.name; } set { this.name = value; } } private string[] name; /// /// The following is the definition of the input parameter "SID". /// Specifies the LocalUser accounts to enable by /// System.Security.Principal.SecurityIdentifier. /// [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, ParameterSetName = "SecurityIdentifier")] [ValidateNotNullOrEmpty] [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] public System.Security.Principal.SecurityIdentifier[] SID { get { return this.sid;} set { this.sid = value; } } private System.Security.Principal.SecurityIdentifier[] sid; #endregion Parameter Properties #region Cmdlet Overrides /// /// BeginProcessing method. /// protected override void BeginProcessing() { sam = new Sam(); } /// /// ProcessRecord method. /// protected override void ProcessRecord() { try { ProcessUsers(); ProcessNames(); ProcessSids(); } catch (Exception ex) { WriteError(ex.MakeErrorRecord()); } } /// /// EndProcessing method. /// protected override void EndProcessing() { if (sam != null) { sam.Dispose(); sam = null; } } #endregion Cmdlet Overrides #region Private Methods /// /// Process users requested by -Name. /// /// /// All arguments to -Name will be treated as names, /// even if a name looks like a SID. /// private void ProcessNames() { if (Name != null) { foreach (var name in Name) { try { if (CheckShouldProcess(name)) sam.EnableLocalUser(sam.GetLocalUser(name), enabling); } catch (Exception ex) { WriteError(ex.MakeErrorRecord()); } } } } /// /// Process users requested by -SID. /// private void ProcessSids() { if (SID != null) { foreach (var sid in SID) { try { if (CheckShouldProcess(sid.ToString())) sam.EnableLocalUser(sid, enabling); } catch (Exception ex) { WriteError(ex.MakeErrorRecord()); } } } } /// /// Process users requested by -InputObject. /// private void ProcessUsers() { if (InputObject != null) { foreach (var user in InputObject) { try { if (CheckShouldProcess(user.Name)) sam.EnableLocalUser(user, enabling); } catch (Exception ex) { WriteError(ex.MakeErrorRecord()); } } } } private bool CheckShouldProcess(string target) { return ShouldProcess(target, Strings.ActionEnableUser); } #endregion Private Methods } }