mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-02-07 06:31:32 +00:00
17 lines
379 B
C#
17 lines
379 B
C#
using System.Management.Automation;
|
|
|
|
namespace DSInternals.PowerShell.Commands
|
|
{
|
|
[Cmdlet(VerbsLifecycle.Enable, "ADDBAccount")]
|
|
[OutputType("None")]
|
|
public class EnableADDBAccountCommand : ADDBAccountStatusCommandBase
|
|
{
|
|
protected override bool Enabled
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
} |