Functions/Open-ConfigurationManager.ps1
|
function Open-ConfigurationManager { <# .Notes AUTHOR: Skyler Hart CREATED: Sometime before 2017-08-07 LASTEDIT: 2020-09-28 09:31:24 KEYWORDS: REQUIRES: #Requires -RunAsAdministrator .LINK https://wanderingstag.github.io #> [CmdletBinding()] [Alias('configmgr')] param() if (Test-Path "C:\Windows\CCM\SMSCFGRC.cpl") {Start-Process C:\Windows\CCM\SMSCFGRC.cpl} elseif (Test-Path "C:\Windows\SysWOW64\CCM\SMSCFGRC.cpl") {Start-Process C:\Windows\SysWOW64\CCM\SMSCFGRC.cpl} elseif (Test-Path "C:\Windows\System32\CCM\SMSCFGRC.cpl") {Start-Process C:\Windows\System32\CCM\SMSCFGRC.cpl} else {Throw "Configuration Manager not found"} } |