mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
16 lines
300 B
PowerShell
16 lines
300 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Starts the Microsoft Store app
|
|||
|
.DESCRIPTION
|
|||
|
This script starts the Microsoft Store application.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./open-microsoft-store
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
Start-Process ms-windows-store:
|
|||
|
exit 0 # success
|