PowerShell/Scripts/cd-recycle-bin.ps1

22 lines
656 B
PowerShell
Raw Normal View History

2021-05-02 11:38:19 +02:00
<#
.SYNTAX cd-recycle-bin.ps1
.DESCRIPTION go to the user's recycle bin folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
function Get-CurrentUserSID { [CmdletBinding()] param()
Add-Type -AssemblyName System.DirectoryServices.AccountManagement
return ([System.DirectoryServices.AccountManagement.UserPrincipal]::Current).SID.Value
}
$TargetDir = 'C:\$Recycle.Bin\' + "$(Get-CurrentUserSID)"
2021-05-02 11:51:41 +02:00
if (-not(test-path "$TargetDir" -pathType container)) {
write-warning "Sorry, there is no folder 📂$TargetDir (yet)"
exit 1
}
2021-05-02 11:38:19 +02:00
set-location "$TargetDir"
"📂$TargetDir"
exit 0