How can I make it so that it can display see the changes this script made? it should look like '"folder name' changed in the 'path'" The path is where the folder name is located.
Get-ChildItem -Path ‘C:\SCRIPT TEST ’ –Recurse|
Foreach-Object { Rename-Item $_.FullName ($_.FullName -replace "hello","goodbye")}
Thanks so much!