How can I count all files in a specific folder (and all subfolders) with the Powershell command Get-ChildItem?
With (Get-ChildItem <Folder> -recurse).Count
also the folders are counted and this is not that what I want. Are there other possibilities for counting files in very big folders quickly?
Does anybody know a short and good tutorial regarding the Windows Powerhell?