Fixed typo

This commit is contained in:
Markus Fleschutz 2021-02-27 11:50:10 +01:00
parent a38160468e
commit b0772a7f93

View File

@ -16,7 +16,7 @@ try {
[int]$Count = 0
write-progress "Listing hidden files in $DirTree ..."
get-childItem $DirTree -attributes Hidden -recurse | foreach-object {
write-output "$_.FullName"
write-output $_.FullName
$Count++
}
write-host -foregroundColor green "OK - found $Count hidden file(s)"