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
Raw Permalink Normal View History

2017-07-14 23:58:11 +02:00
# load ActiveDirectory module
2017-07-17 07:29:47 +02:00
2017-07-14 23:58:11 +02:00
function Show-Menu
{
2017-07-17 07:29:47 +02:00
begin
{
try
{
Import-Module ActiveDirectory -ErrorAction Stop
}
catch
{
Write-Warning $_
break
}
}
process
{
}
2017-07-14 23:58:11 +02:00
}