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