PowerShell/Scripts/close-system-settings.ps1

17 lines
332 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
close-system-settings.ps1
.DESCRIPTION
Closes the System Settings gracefully
.EXAMPLE
PS> .\close-system-settings.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-02-13 17:10:43 +01:00
#>
2021-04-07 14:37:12 +02:00
& "$PSScriptRoot/close-program.ps1" "System Settings" "SystemSettings" "SystemSettings"
exit 0