You are currently viewing PowerShell Clear-Item Cmdlet

PowerShell Clear-Item Cmdlet

PowerShell Clear-Item Cmdlet

Hello Everyone

Welcome to CloudAffaire and this is Debjeet.

In the last blog post, we have discussed Move-Item cmdlet in PowerShell.

https://cloudaffaire.com/powershell-move-item-cmdlet/

In this blog post, we will discuss Clear-Item cmdlet in PowerShell. You can use Clear-Item cmdlet to clear the content of a variable or a registry key. Clear-Item cmdlet does not delete the item itself, rather it only clears the item value. If you want to delete the item itself use Remove-Item cmdlet. To clear the content of a file use Clear-Content cmdlet.

Clear-Item Cmdlet Syntax:

Clear-Item Cmdlet Argument List:

  • Confirm: Prompts you for confirmation before running the cmdlet.
  • Credential: To impersonate another user or elevate your credentials.
  • Exclude: Specifies, as a string array, an item or items that this cmdlet excludes in the operation. The value of this parameter qualifies the Path parameter.
  • Filter: Specifies a filter to qualify the Path parameter. The FileSystem provider is the only installed PowerShell provider that supports the use of filters.
  • Force: Forces the cmdlet to remove items that cannot otherwise be changed, such as hidden or read-only files or read-only aliases or variables.
  • Include: Specifies, as a string array, an item or items that this cmdlet includes in the operation. The value of this parameter qualifies the Path parameter.
  • LiteralPath: Specifies a path to one or more locations. The value of LiteralPath is used exactly as it is typed. No characters are interpreted as wildcards.
  • Path: Specifies a path of the items being removed. Wildcard characters are permitted.
  • UseTransaction: Includes the command in the active transaction. This parameter is valid only when a transaction is in progress.
  • WhatIf: Shows what would happen if the cmdlet runs. The cmdlet is not run.

PowerShell Clear-Item Cmdlet:

Hope you have enjoyed this article. In the next blog post, we will discuss Rename-Item cmdlet in PowerShell.

To get more details on PowerShell, kindly follow below official documentation

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about?view=powershell-5.1

 

Leave a Reply