Recycle Bin: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Empty the recycle bin == <source lang="powershell"> # Solution 1 Get-ChildItem -Path 'C:\$Recycle.Bin' -Force | Remove-Item -Recurse -ErrorAction SilentlyCo…“)
 
(kein Unterschied)

Aktuelle Version vom 25. Mai 2020, 07:28 Uhr

Empty the recycle bin

# Solution 1
Get-ChildItem -Path 'C:\$Recycle.Bin' -Force | Remove-Item -Recurse -ErrorAction SilentlyContinue
 
# Solution 2
$recycleBin = (New-Object -ComObject Shell.Application).NameSpace(0xa)
$recycleBin.Items() | ForEach-Object -Process { Remove-Item -Path $_.Path -Force -Recurse }
 
# Solution 3 (PowerShell v5)
Clear-RecycleBin -Force


Source: http://powershell-guru.com/powershell-tip-74-empty-the-recycle-bin/