mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 03:54:46 +01:00
16 lines
352 B
PowerShell
Executable File
16 lines
352 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Closes the Microsoft Store app
|
|
.DESCRIPTION
|
|
This script closes the Microsoft Store application gracefully.
|
|
.EXAMPLE
|
|
PS> ./close-microsoft-store
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "Microsoft Store" "WinStore.App" ""
|
|
exit 0 # success
|