You can search for blocked files like this:
get-item * -stream zone*
Then to unblock the files, pipe that to remove-item or "rm" to delete the zone.identifier streams:
get-item * -stream zone* | Remove-Item
In case you want recursive search:
get-childitem -recurse | get-item -stream zone*