PowerShell/scripts/open-one-drive-folder.ps1

25 lines
576 B
PowerShell
Raw Normal View History

2024-10-01 13:37:53 +02:00
<#
2021-11-30 14:57:46 +01:00
.SYNOPSIS
Opens the OneDrive folder
.DESCRIPTION
This script launches the File Explorer with the user's OneDrive folder.
.EXAMPLE
PS> ./open-one-drive-folder
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-11-30 14:57:46 +01:00
#>
try {
$TargetDirs = resolve-path "$HOME/OneDrive*"
foreach($TargetDir in $TargetDirs) {
& "$PSScriptRoot/open-file-explorer.ps1" "$TargetDir"
exit 0 # success
}
throw "No OneDrive folder at 📂$HOME/Dropbox"
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-11-30 14:57:46 +01:00
exit 1
}