mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
25 lines
604 B
PowerShell
25 lines
604 B
PowerShell
|
<#
|
|||
|
.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
|
|||
|
}
|