PowerShell/Scripts/open-recycle-bin.ps1

15 lines
373 B
PowerShell
Raw Normal View History

2021-05-02 11:07:39 +02:00
<#
.SYNTAX open-recycle-bin.ps1
.DESCRIPTION starts the File Explorer with the recycle bin folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
start shell:recyclebinfolder
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-05-02 11:07:39 +02:00
exit 1
}