Functions/Open-LAPS.ps1
|
function Open-LAPS { <# .Notes AUTHOR: Skyler Hart CREATED: 08/19/2017 21:57:51 LASTEDIT: 2020-04-19 20:20:43 KEYWORDS: REQUIRES: -Modules AdmPwd.PS .LINK https://wanderingstag.github.io #> [CmdletBinding()] [Alias('laps')] param() try { Start-Process 'C:\Program Files\LAPS\AdmPwd.UI' -ErrorAction Stop } catch [System.InvalidOperationException] { $err = $_.Exception.message.Trim() if ($err -match "cannot find the file") { Write-Error "LAPS admin console not installed" } else { Write-Error "Unknown error" } } catch { Get-Error -HowMany 1 } } |