After downloading Nant 0.91, I\'m getting some rather cryptic configuration errors relating to configuration or security (see below).
I\'m trying to simply upgrade
Here's how to unblock all the files recursively after the fact with powershell. Weirdly, unblock-file only checks for the pspath property over the pipe.
get-childitem -recurse c:\nant-92 |
get-item -stream zone.identifier -erroraction silentlycontinue |
foreach { $_.pspath = $_.pspath -replace ':zone.identifier'; $_ } |
unblock-file
Of course you could do it this way, without knowing which was blocked or not:
get-childitem -recurse c:\nant-92 | unblock-file