PowerShell/Scripts/open-recycle-bin-folder.ps1
2022-09-06 21:42:04 +02:00

21 lines
424 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the recycle bin folder
.DESCRIPTION
This script launches the File Explorer with the user's recycle bin folder.
.EXAMPLE
PS> ./open-recycle-bin-folder
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
start shell:recyclebinfolder
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}