mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 21:44:56 -06:00
23 lines
530 B
PowerShell
23 lines
530 B
PowerShell
function Invoke-WPFControlPanel {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Opens the requested legacy panel
|
|
|
|
.PARAMETER Panel
|
|
The panel to open
|
|
|
|
#>
|
|
param($Panel)
|
|
|
|
switch ($Panel){
|
|
"WPFPanelcontrol" {cmd /c control}
|
|
"WPFPanelnetwork" {cmd /c ncpa.cpl}
|
|
"WPFPanelpower" {cmd /c powercfg.cpl}
|
|
"WPFPanelregion" {cmd /c intl.cpl}
|
|
"WPFPanelsound" {cmd /c mmsys.cpl}
|
|
"WPFPanelsystem" {cmd /c sysdm.cpl}
|
|
"WPFPaneluser" {cmd /c "control userpasswords2"}
|
|
}
|
|
}
|