PowerShell/Scripts/open-apps-folder.ps1

17 lines
342 B
PowerShell
Raw Normal View History

2021-12-09 15:45:03 +01:00
<#
.SYNOPSIS
Opens the Apps folder
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script launches the File Explorer showing the UWP apps folder.
2021-12-09 15:45:03 +01:00
.EXAMPLE
PS> ./open-apps-folder
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-12-09 15:45:03 +01:00
#>
& "$PSScriptRoot/open-file-explorer.ps1" "shell:AppsFolder"
exit 0 # success