You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On my computer the Remove-ItemSafely actually removes the file.
Also the help command indicates Remove-ItemSafely is actually just Remove-Item.
> Remove-ItemSafely -?
NAME
Remove-Item
SYNTAX
Remove-Item [-Path] <string[]> [-Filter <string>] [-Include <string[]>] [-Exclude <string[]>] [-Recurse] [-Force] [-Credential <pscredential>] [-WhatIf] [-Confirm] [-UseTransaction] [-Stream
<string[]>] [<CommonParameters>]
Remove-Item -LiteralPath <string[]> [-Filter <string>] [-Include <string[]>] [-Exclude <string[]>] [-Recurse] [-Force] [-Credential <pscredential>] [-WhatIf] [-Confirm] [-UseTransaction]
[-Stream <string[]>] [<CommonParameters>]
ALIASES
ri
rm
rmdir
del
erase
rd
REMARKS
Get-Help cannot find the Help files for this cmdlet on this computer. It is displaying only partial help.
-- To download and install Help files for the module that includes this cmdlet, use Update-Help.
-- To view the Help topic for this cmdlet online, type: "Get-Help Remove-Item -Online" or
go to https://go.microsoft.com/fwlink/?LinkID=113373.
n> Get-RecycledItem -?
NAME
Get-RecycledItem
SYNOPSIS
Get all items from the recycle bin, optionally filtered by the parameters
SYNTAX
Get-RecycledItem [[-OriginalPath] <String>] [[-SortingCriteria] <String>] [[-Descending]] [[-Top] <Int16>] [[-SelectorScript] <ScriptBlock>] [<CommonParameters>]
Get-RecycledItem [[-OriginalPathRegex] <String>] [[-SortingCriteria] <String>] [[-Descending]] [[-Top] <Int16>] [[-SelectorScript] <ScriptBlock>] [<CommonParameters>]
DESCRIPTION
Get all items from the recycle bin, optionally filtered by the parameters
RELATED LINKS
REMARKS
To see the examples, type: "get-help Get-RecycledItem -examples".
For more information, type: "get-help Get-RecycledItem -detailed".
For technical information, type: "get-help Get-RecycledItem -full".
The text was updated successfully, but these errors were encountered:
The permanent deleting is is a known issue, see #18 (if you specify any of these arguments, it will not use the recycle bin: DeletePermanently, Filter, Include, Exclude, Recurse, Force, Credential).
Because of this (poor) design, its documentation is just a forward of Remove-Item's documentation (I didn't realize it would show that the module name was Remove-Item).
On my computer the
Remove-ItemSafely
actually removes the file.Also the help command indicates
Remove-ItemSafely
is actually justRemove-Item
.The text was updated successfully, but these errors were encountered: