PowerShell/Scripts/close-microsoft-store.ps1

20 lines
431 B
PowerShell
Raw Normal View History

<#
.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
#>
2021-11-15 07:38:37 +01:00
$result = TaskKill /im WinStore.App.exe /f /t
if ($result -ne 0) {
& "$PSScriptRoot/speak-english.ps1" "Sorry, can't close Microsoft Store"
exit 1
}
exit 0 # success