This repository has been archived on 2020-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
control-ad/scripts/template.ps1

25 lines
277 B
PowerShell

# load ActiveDirectory module
function Show-Menu
{
begin
{
try
{
Import-Module ActiveDirectory -ErrorAction Stop
}
catch
{
Write-Warning $_
break
}
}
process
{
}
}