PowerShell/scripts/open-apps-folder.ps1

17 lines
342 B
PowerShell
Raw Normal View History

2023-10-31 12:48:22 +01:00
<#
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
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-12-09 15:45:03 +01:00
#>
& "$PSScriptRoot/open-file-explorer.ps1" "shell:AppsFolder"
exit 0 # success