PowerShell/Scripts/close-system-settings.ps1
2021-09-24 17:19:49 +02:00

16 lines
329 B
PowerShell
Executable File

<#
.SYNOPSIS
close-system-settings.ps1
.DESCRIPTION
Closes the System Settings gracefully
.EXAMPLE
PS> ./close-system-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "System Settings" "SystemSettings" "SystemSettings"
exit 0