PowerShell/Scripts/close-microsoft-store.ps1

16 lines
316 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-14 12:19:12 +01:00
taskkill /im WinStore.App.exe /f /t
exit 0 # success