WindowsStuff/Powershell/unblockFiles.txt

6 lines
178 B
Plaintext
Raw Permalink Normal View History

2022-12-18 10:32:07 +01:00
Get-ChildItem C:\Users\jeroe\Desktop\weg -recurse | Unblock-File
Get-ChildItem -Recurse | % { Rename-Item -Path $_.PSPath -NewName $_.Name.replace("FirstWord","SecondWord") }