Powershell script to get all full files paths in the folder # PowerShell -Recurse parameter Clear-Host $Directory = "folderpath" foreach ($i in (get-childitem $Directory -recurse)) { $ Write-Host $_.FullName echo "this is " $i } Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment