Add open-home-folder.ps1

This commit is contained in:
Markus Fleschutz
2021-10-23 11:06:03 +02:00
parent 86f936df08
commit 1f8804fe37
8 changed files with 94 additions and 7 deletions

24
Scripts/open-home-folder.ps1 Executable file
View File

@ -0,0 +1,24 @@
<#
.SYNOPSIS
Opens the home folder
.DESCRIPTION
This script starts the File Explorer to show the home folder.
.EXAMPLE
PS> ./open-home-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TargetDir = resolve-path "$HOME"
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Home folder at 📂$TargetDir doesn't exist (yet)"
}
& "$PSScriptRoot/open-file-explorer.ps1" "$TargetDir"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}