Functions/Open-DNSmgmt.ps1
|
function Open-DNSmgmt { <# .Notes AUTHOR: Skyler Hart CREATED: 08/19/2017 22:26:23 LASTEDIT: 2022-09-04 12:10:54 KEYWORDS: .LINK https://wanderingstag.github.io #> [CmdletBinding()] [Alias('dns')] param() try { $ErrorActionPreference = "Stop" dnsmgmt.msc } catch { Write-Output "Active Directory snapins are not installed/enabled." } } |