WindowsStuff/Powershell/unblockFiles.txt

6 lines
178 B
Plaintext

Get-ChildItem C:\Users\jeroe\Desktop\weg -recurse | Unblock-File
Get-ChildItem -Recurse | % { Rename-Item -Path $_.PSPath -NewName $_.Name.replace("FirstWord","SecondWord") }