LoginSignup
12
11

More than 5 years have passed since last update.

PowerShellメモ 一括でブロックの解除(ZoneId)

Last updated at Posted at 2016-10-10

概要

ネットから落としてきたファイルに付いているこれ。

ps04.png

指定フォルダ配下のファイルを一括ブロック解除する方法。

書式

Get-ChildItem 【フォルダパス】 -Recurse | Unblock-File
もっと短く
ls 【フォルダパス】 -r | unblock-file

実行例

ls "C:\Work\Download Files" -r unblock-file

# カレント配下をブロック解除
ls . -r | unblock-file

動作確認した環境

  • PowerShell V5 (Windows 10)
12
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
11