mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-04-11 03:31:59 +00:00
56 lines
2.3 KiB
C#
56 lines
2.3 KiB
C#
using DSInternals.Common.Data;
|
|
using DSInternals.PowerShell.Properties;
|
|
using System;
|
|
using System.Management.Automation;
|
|
|
|
namespace DSInternals.PowerShell.Commands
|
|
{
|
|
/// <summary>
|
|
/// Abstract cmdlet for enabling and disabling accounts in AD database.
|
|
/// Implemented in the Enable-ADDBAccount and Disable-ADDBAccount cmdlets.
|
|
/// </summary>
|
|
public abstract class ADDBAccountStatusCommandBase : ADDBModifyPrincipalCommandBase
|
|
{
|
|
protected abstract bool Enabled
|
|
{
|
|
get;
|
|
}
|
|
|
|
protected override void ProcessRecord()
|
|
{
|
|
// TODO: Extract messages as resources
|
|
string verboseMessage = this.Enabled ?
|
|
"Enabling account {0}." :
|
|
"Disabling account {0}.";
|
|
bool hasChanged;
|
|
switch (this.ParameterSetName)
|
|
{
|
|
case parameterSetByDN:
|
|
this.WriteVerbose(String.Format(verboseMessage, this.DistinguishedName));
|
|
var dn = new DistinguishedName(this.DistinguishedName);
|
|
hasChanged = this.DirectoryAgent.SetAccountStatus(dn, this.Enabled, this.SkipMetaUpdate);
|
|
break;
|
|
|
|
case parameterSetByName:
|
|
this.WriteVerbose(String.Format(verboseMessage, this.SamAccountName));
|
|
hasChanged = this.DirectoryAgent.SetAccountStatus(this.SamAccountName, this.Enabled, this.SkipMetaUpdate);
|
|
break;
|
|
|
|
case parameterSetByGuid:
|
|
this.WriteVerbose(String.Format(verboseMessage, this.ObjectGuid));
|
|
hasChanged = this.DirectoryAgent.SetAccountStatus(this.ObjectGuid, this.Enabled, this.SkipMetaUpdate);
|
|
break;
|
|
|
|
case parameterSetBySid:
|
|
this.WriteVerbose(String.Format(verboseMessage, this.ObjectSid));
|
|
hasChanged = this.DirectoryAgent.SetAccountStatus(this.ObjectSid, this.Enabled, this.SkipMetaUpdate);
|
|
break;
|
|
|
|
default:
|
|
// This should never happen:
|
|
throw new PSInvalidOperationException(Resources.InvalidParameterSetMessage);
|
|
}
|
|
this.WriteVerboseResult(hasChanged);
|
|
}
|
|
}
|
|
} |