Click here to Skip to main content
15,881,757 members
Articles / Operating Systems / Windows

Unblock Downloaded Files with PowerShell

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
3 Oct 2012CPOL2 min read 22.2K   6   3
Unblock downloaded files with PowerShell

Have you ever got into a situation that you downloaded a zip-file and figured out too late that the files are blocked? So you extracted the zip file into a folder with existing items. It will be damn hard to figure out which files needs to be unblocked. Besides that, it will cost you a lot of work to do so by right-clicking all of the files and clicking the unblock button.

Luckily, we have PowerShell and we can easily write a little script to execute the unblock operation on the files in a specific directory. So start by opening PowerShell and key in the following command:

gci  ’c:\Somefolder’ | Unblock-File -WhatIf

The above command will unblock all the Child Items in the given directory. The WhatIf parameter will actually not execute it really, but it will show you what the script is going to do. To really execute the action, you have to remove the parameter.

gci ‘c:\Somefolder’ | Unblock-File

As you may have seen when using the WhatIf parameter, only the files in this folder will be unblocked. What if you want to unblock the files in the sub folders. This can easily be done with the Recurse parameter on your path.

gci ‘c:\Somefolder’ -Recurse | Unblock-File -WhatIf

Because I used the WhatIf parameter again, I can pre-check what the command is actually going to do. When I’m sure I want to do it, I can just remove the WhatIf parameter again and run the script against the files.

gci ‘c:\Somefolder’ -Recurse | Unblock-File

So now you won't have to worry about files being blocked, just execute the script and you’re ready to go. Bookmark this article to easily access the commands when you need them and share it with your friends to make their lives also a little easier. Oh and don’t forget to have a look at the ‘PowerShell Getting Started Guide‘ for more information on using PowerShell.

This article was originally posted at http://marcofranssen.nl?p=306

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Atos
Netherlands Netherlands
I am a .NET Software Developer at Atos International. Architecture, CQRS, DDD, C#, ASP.NET, MVC3, HTML5, Jquery, WP7, WPF, ncqrs, Node.js

Comments and Discussions

 
QuestionUnknown command Unblock-File Pin
Joel Lucsy3-Oct-12 7:38
Joel Lucsy3-Oct-12 7:38 
AnswerRe: Unknown command Unblock-File Pin
William E. Kempf3-Oct-12 9:25
William E. Kempf3-Oct-12 9:25 
AnswerRe: Unknown command Unblock-File Pin
Maximilian Haru Raditya4-Oct-12 16:53
Maximilian Haru Raditya4-Oct-12 16:53 
From the manual:

This cmdlet is introduced in Windows PowerShell 3.0.
Maximilian Haru Raditya


modified 5-Oct-12 2:33am.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.