PowerShellModules icon indicating copy to clipboard operation
PowerShellModules copied to clipboard

`Remove-ItemSafely` actually executes `Remove-Item`

Open ZhaoXiangXML opened this issue 4 months ago • 1 comments

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".



ZhaoXiangXML avatar Sep 28 '24 14:09 ZhaoXiangXML