Shell – How to unblock file via WindowsPowerShell

powershell-2.0

I am using windows Vista buissnes 32 bit.
When I try to execute command :

dir *.* -Recurse | Unblock-File

I am getting : The term 'Unblock-File' is not recognized as the name of cmdlet, fun..
I am running 2.0 version of powershell
Is there any other way to do this?

Best Answer

Microsoft's article on Unblock-File states that:

This cmdlet is introduced in Windows PowerShell 3.0.

PowerShell 3.0 is not available for Vista, so you're out of luck.

Related Question