mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-31 03:01:38 +00:00
18 lines
396 B
C#
18 lines
396 B
C#
using System;
|
|
using System.Management.Automation;
|
|
|
|
namespace DSInternals.PowerShell.Commands
|
|
{
|
|
[Cmdlet(VerbsLifecycle.Disable, "ADDBAccount")]
|
|
[OutputType("None")]
|
|
public class DisableADDBAccountCommand : ADDBAccountStatusCommandBase
|
|
{
|
|
protected override bool Enabled
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} |