Files
PowerShell/scripts/open-microsoft-store.ps1
2025-07-09 15:09:20 +02:00

18 lines
329 B
PowerShell
Executable File

<#
.SYNOPSIS
Starts the Microsoft Store app
.DESCRIPTION
This script launches the Microsoft Store application.
.EXAMPLE
PS> ./open-microsoft-store.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#requires -version 5.1
Start-Process ms-windows-store:
exit 0 # success