Files
winutil/functions/public/Invoke-WPFControlPanel.ps1
T

23 lines
531 B
PowerShell
Raw Normal View History

+3
2023-03-07 12:28:00 -08:00
function Invoke-WPFControlPanel {
2023-10-19 17:12:55 -05:00
<#
.SYNOPSIS
Opens the requested legacy panel
.PARAMETER Panel
The panel to open
+3
2023-03-07 12:28:00 -08:00
#>
param($Panel)
switch ($Panel) {
+3
2023-03-07 12:28:00 -08:00
"WPFPanelcontrol" {cmd /c control}
"WPFPanelnetwork" {cmd /c ncpa.cpl}
"WPFPanelpower" {cmd /c powercfg.cpl}
2023-08-02 19:43:52 -05:00
"WPFPanelregion" {cmd /c intl.cpl}
+3
2023-03-07 12:28:00 -08:00
"WPFPanelsound" {cmd /c mmsys.cpl}
"WPFPanelsystem" {cmd /c sysdm.cpl}
"WPFPaneluser" {cmd /c "control userpasswords2"}
}
}