PowerShell/Scripts/open-task-bar-settings.ps1

16 lines
320 B
PowerShell
Raw Normal View History

2021-11-01 12:06:51 +01:00
<#
.SYNOPSIS
2021-11-23 12:24:37 +01:00
Opens the Windows taskbar settings
2021-11-01 12:06:51 +01:00
.DESCRIPTION
This script launches the Windows taskbar settings application.
.EXAMPLE
2021-11-23 12:24:37 +01:00
PS> ./open-task-bar-settings
2021-11-01 12:06:51 +01:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:taskbar
exit 0 # success