PowerShell/Scripts/cd-recycle-bin.ps1

29 lines
676 B
PowerShell
Raw Normal View History

2021-05-02 11:38:19 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
cd-recycle-bin.ps1
.DESCRIPTION
Go to the user's recycle bin folder
.EXAMPLE
PS> .\cd-recycle-bin.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-05-02 11:38:19 +02:00
#>
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