Managing File System Tasks with PowerShell

by Sep 12, 2012

If you need to list all cmdlets that deal with file system-related tasks, try this:

Get-Command -Noun item*, path

Many of these cmdlets have historic aliases that will help you guess what they are doing:

Get-Alias -Definition *-item*, *-path* | Select-Object Name, Definition

Twitter This Tip! ReTweet this Tip!