mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 15:00:09 +00:00
* Updated winutil website add git ignore to not upload unnecessarily file. i have also updated microwin docs and added a copyright info to the footer * Update _index.md * Update KnownIssues.md * Update links update all the links for github to the corresponding pages. i have kept the original links aswell but commented out * update hugo workflow to use version 0.147.0 * Update en.yaml * update hugo toml to get rid off powered by * Update docs.yaml * Update KnownIssues.md * Update KnownIssues.md * Update KnownIssues.md * Update compatibility note for MicroWin and Ventoy * removed quad 9 dns * fixed all the incorrect code block in markdown file * Replace hardcoded page lists with auto-discovery shortcode Created a new shortcode at docs/layouts/shortcodes/autolinks.html. This enables auto-discovery when creating new Markdown files, streamlining the workflow for future documentation updates. * updated os requirements
736 B
736 B
Network Connections
function Invoke-WPFControlPanel {
<#
.SYNOPSIS
Opens the requested legacy panel
.PARAMETER Panel
The panel to open
#>
param($Panel)
switch ($Panel) {
"WPFPanelControl" {control}
"WPFPanelComputer" {compmgmt.msc}
"WPFPanelNetwork" {ncpa.cpl}
"WPFPanelPower" {powercfg.cpl}
"WPFPanelPrinter" {Start-Process "shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}"}
"WPFPanelRegion" {intl.cpl}
"WPFPanelRestore" {rstrui.exe}
"WPFPanelSound" {mmsys.cpl}
"WPFPanelSystem" {sysdm.cpl}
"WPFPanelTimedate" {timedate.cpl}
"WPFPanelUser" {control userpasswords2}
}
}