Add some open-*-folder.ps1 scripts

This commit is contained in:
Markus Fleschutz
2021-11-29 14:26:20 +01:00
parent 531e38847d
commit 70d97b6e91
5 changed files with 75 additions and 3 deletions

View File

@ -0,0 +1,24 @@
<#
.SYNOPSIS
Opens the autostart folder
.DESCRIPTION
This script launches the File Explorer with the user's autostart folder.
.EXAMPLE
PS> ./open-auto-start-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TargetDir = resolve-path "$HOME/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup"
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Autostart 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
}