2021-11-29 14:26:20 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Opens the desktop folder
|
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script launches the File Explorer with the user's desktop folder.
|
2021-11-29 14:26:20 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./open-desktop-folder
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz / License: CC0
|
2021-11-29 14:26:20 +01:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$TargetDir = resolve-path "$HOME/Desktop"
|
|
|
|
|
if (-not(test-path "$TargetDir" -pathType container)) {
|
|
|
|
|
throw "Desktop folder at 📂$TargetDir doesn't exist (yet)"
|
|
|
|
|
}
|
|
|
|
|
& "$PSScriptRoot/open-file-explorer.ps1" "$TargetDir"
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-11-29 14:26:20 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|