mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
16 lines
298 B
PowerShell
Executable File
16 lines
298 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens Windows apps settings
|
|
.DESCRIPTION
|
|
This script launches the Windows aps settings.
|
|
.EXAMPLE
|
|
PS> ./open-apps-settings
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
Start-Process ms-settings:appsfeatures
|
|
exit 0 # success
|